목차
chatGPT가 결과물을 출력하다가 발생시킨 오류에서 뱉어낸 글.
translate
// This tool translates text from one language to another. It supports a wide range of languages and can handle both short phrases and longer texts. It can also detect the source language if it is not specified by the user.
namespace translate {
// Translates text from one language to another.
type translateText = (_: {
// The text to translate.
text: string,
// The language to translate the text into.
targetLanguage: string,
// The language of the text to translate. If not provided, the service will attempt to detect the language.
sourceLanguage?: string,
}) => any;
} // namespace translate
summarizer
// This tool summarizes long pieces of text, such as articles, essays, and reports, into shorter versions. It uses advanced natural language processing techniques to understand the main points and key details of the original text. The resulting summary maintains the essence of the original content while being significantly shorter and easier to read.
namespace summarizer {
// Summarizes a long piece of text into a shorter version.
type summarizeText = (_: {
// The text to summarize.
text: string,
}) => any;
} // namespace summarizer
textToSpeech
// This tool converts written text into spoken words. It uses advanced text-to-speech technology to generate natural-sounding speech in a variety of languages and voices. It can be used to read out articles, books, emails, and other written content. It can also be used to generate speech for use in videos, presentations, and other multimedia content.
namespace textToSpeech {
// Converts written text into spoken words.
type convertTextToSpeech = (_: {
// The text to convert into speech.
text: string,
// The language of the text to convert. It's a two-letter language code. (e.g., en for English, es for Spanish, or fr for French).
language?: string,
// The gender of the voice to use for the speech. (e.g., male or female).
gender?: string,
// The speed of the speech. (e.g., slow, normal, or fast).
speed?: string,
}) => any;
} // namespace textToSpeech
speechToText
// This tool converts spoken words into written text. It uses advanced speech-to-text technology to transcribe speech from audio files or live audio streams. It can be used to transcribe interviews, meetings, lectures, and other spoken content. It can also be used to convert voice notes and voice messages into text.
namespace speechToText {
// Converts spoken words into written text.
type convertSpeechToText = (_: {
// The audio file to convert into text.
audioFile: string,
// The language of the speech to convert. It's a two-letter language code. (e.g., en for English, es for Spanish, or fr for French).
language?: string,
}) => any;
} // namespace speechToText
weather
// This tool provides current weather conditions and forecasts for locations around the world. It uses data from multiple sources to provide accurate and up-to-date information. It can provide information on temperature, humidity, wind speed, precipitation, and more. It can also provide forecasts for the next few hours, days, or weeks.
namespace weather {
// Gets the current weather conditions for a specific location.
type getCurrentWeather = (_: {
// The location to get the weather for.
location: string,
}) => any;
// Gets the weather forecast for a specific location.
type getWeatherForecast = (_: {
// The location to get the weather forecast for.
location: string,
// The number of days to get the forecast for.
days?: number,
}) => any;
} // namespace weather
stockMarket
// This tool provides information about stock market performance, including current stock prices, historical data, and market trends. It uses data from multiple sources to provide accurate and up-to-date information. It can provide information on individual stocks, market indices, sectors, and more. It can also provide forecasts and analysis to help users make informed investment decisions.
namespace stockMarket {
// Gets the current price of a specific stock.
type getCurrentStockPrice = (_: {
// The ticker symbol of the stock to get the price for.
ticker: string,
}) => any;
// Gets the historical price data for a specific stock.
type getHistoricalStockPrice = (_: {
// The ticker symbol of the stock to get the historical price data for.
ticker: string,
// The start date of the period to get the historical price data for. It's in the format YYYY-MM-DD.
startDate?: string,
// The end date of the period to get the historical price data for. It's in the format YYYY-MM-DD.
endDate?: string,
}) => any;
} // namespace stockMarket
cryptoCurrency
// This tool provides information about cryptocurrency performance, including current prices, historical data, and market trends. It uses data from multiple sources to provide accurate and up-to-date information. It can provide information on individual cryptocurrencies, market indices, sectors, and more. It can also provide forecasts and analysis to help users make informed investment decisions.
namespace cryptoCurrency {
// Gets the current price of a specific cryptocurrency.
type getCurrentCryptoPrice = (_: {
// The ticker symbol of the cryptocurrency to get the price for.
ticker: string,
}) => any;
// Gets the historical price data for a specific cryptocurrency.
type getHistoricalCryptoPrice = (_: {
// The ticker symbol of the cryptocurrency to get the historical price data for.
ticker: string,
// The start date of the period to get the historical price data for. It's in the format YYYY-MM-DD.
startDate?: string,
// The end date of the period to get the historical price data for. It's in the format YYYY-MM-DD.
endDate?: string,
}) => any;
} // namespace cryptoCurrency
languageDetection
// This tool detects the language of a given text. It uses advanced natural language processing techniques to identify the language with high accuracy. It supports a wide range of languages and can handle both short phrases and longer texts.
namespace languageDetection {
// Detects the language of a given text.
type detectLanguage = (_: {
// The text to detect the language of.
text: string,
}) => any;
} // namespace languageDetection
sentimentAnalysis
// This tool analyzes the sentiment of a given text. It uses advanced natural language processing techniques to determine whether the sentiment is positive, negative, or neutral. It can also provide a score indicating the strength of the sentiment. It can be used to analyze the sentiment of social media posts, reviews, comments, and other types of text.
namespace sentimentAnalysis {
// Analyzes the sentiment of a given text.
type analyzeSentiment = (_: {
// The text to analyze the sentiment of.
text: string,
}) => any;
} // namespace sentimentAnalysis
textAnalysis
// This tool analyzes a given text for various features. It uses advanced natural language processing techniques to identify entities (such as people, places, and organizations), extract key phrases, detect the language, and more. It can be used to analyze a wide range of text, from social media posts and reviews to articles and books.
namespace textAnalysis {
// Analyzes a given text for various features.
type analyzeText = (_: {
// The text to analyze.
text: string,
}) => any;
} // namespace textAnalysis
imageAnalysis
// This tool analyzes images for various features. It uses advanced image processing techniques to identify objects, detect faces
translate
// This tool translates text from one language to another. It supports a wide range of languages and can handle both short phrases and longer texts. It can also detect the source language if it is not specified by the user.
namespace translate {
// Translates text from one language to another.
type translateText = (_: {
// The text to translate
text: string,
// The language to translate from
sourceLanguage?: string,
// The language to translate to
targetLanguage: string,
}) => any;
// Detects the language of a given text.
type detectLanguage = (_: {
// The text to detect the language of
text: string,
}) => any;
} // namespace translate
summarizer
// This tool summarizes long pieces of text, such as articles, essays, and reports, into a few sentences or paragraphs. It uses advanced natural language processing techniques to understand the main points of the text and then generates a concise summary that retains the essential information.
namespace summarizer {
// Summarizes a given text.
type summarizeText = (_: {
// The text to summarize
text: string,
}) => any;
} // namespace summarizer
textToSpeech
// This tool converts text into spoken words. It uses advanced speech synthesis technology to produce high-quality audio in a variety of voices and languages. It can be used to read out text, create audio books, assist visually impaired users, or for any other application where text needs to be converted into speech.
namespace textToSpeech {
// Converts text into spoken words.
type convertTextToSpeech = (_: {
// The text to convert into speech
text: string,
// The language to use for the speech
language?: string,
// The gender of the voice to use for the speech
gender?: string,
// The speed of the speech
speed?: number,
// The pitch of the speech
pitch?: number,
}) => any;
} // namespace textToSpeech
speechToText
// This tool converts spoken words into written text. It uses advanced speech recognition technology to transcribe audio into text in real time. It can be used to transcribe interviews, meetings, lectures, or any other audio content.
namespace speechToText {
// Converts spoken words into written text.
type convertSpeechToText = (_: {
// The audio file to convert into text
audioFile: string,
// The language of the speech
language?: string,
}) => any;
} // namespace speechToText
weather
// This tool provides current weather conditions and forecasts for locations around the world. It can provide information on temperature, humidity, wind speed, and other weather conditions. It can also provide forecasts for the next few days or weeks.
namespace weather {
// Gets the current weather conditions for a location.
type getCurrentWeather = (_: {
// The location to get the weather for
location: string,
}) => any;
// Gets the weather forecast for a location.
type getWeatherForecast = (_: {
// The location to get the weather forecast for
location: string,
// The number of days to get the forecast for
days?: number,
}) => any;
} // namespace weather
factChecker
// This tool checks the veracity of statements or claims by comparing them with a database of verified facts. It uses advanced natural language processing techniques to understand the claim and then searches for relevant facts to confirm or refute it. It can be used to fact-check news articles, social media posts, or any other text that contains claims or statements.
namespace factChecker {
// Checks the veracity of a statement or claim.
type checkFact = (_: {
// The statement or claim to check
claim: string,
}) => any;
} // namespace factChecker
sentimentAnalysis
// This tool analyzes text to determine the sentiment expressed in it. It uses advanced natural language processing techniques to understand the text and then assigns a sentiment score based on the positive or negative emotions expressed in it. It can be used to analyze customer reviews, social media posts, or any other text that contains subjective opinions.
namespace sentimentAnalysis {
// Analyzes the sentiment of a piece of text.
type analyzeSentiment = (_: {
// The text to analyze
text: string,
}) => any;
} // namespace sentimentAnalysis
imageRecognition
// This tool recognizes objects, people, text, scenes, and activities in images. It uses advanced image recognition technology to understand the content of an image and then provides detailed labels describing what it has found. It can be used to analyze images for a variety of applications, such as photo tagging, content moderation, or visual search.
namespace imageRecognition {
// Recognizes objects, people, text, scenes, and activities in an image.
type recognizeImage = (_: {
// The image to recognize
image: string,
}) => any;
} // namespace imageRecognition
textAnalysis
// This tool analyzes text to extract key information and understand its meaning. It uses advanced natural language processing techniques to identify entities, keywords, categories, sentiment, and other features of the text. It can be used to analyze news articles, social media posts, or any other text that needs to be understood at a high level.
namespace textAnalysis {
// Analyzes a piece of text to extract key information and understand its meaning.
type analyzeText = (_: {
// The text to analyze
text: string,
}) => any;
} // namespace textAnalysis
plagiarismChecker
// This tool checks text for plagiarism by comparing it with a large database of web pages, academic papers, and other documents. It uses advanced text matching algorithms to find similar or identical passages in the database and then provides a report showing any potential plagiarism. It can be used to check essays, articles, or any other text that needs to be original.
namespace plagiarismChecker {
// Checks a piece of text for plagiarism.
type checkPlagiarism = (_: {
// The text to check for plagiarism
text: string,
}) => any;
} // namespace plagiarismChecker
grammarChecker
// This tool checks text for grammatical errors and provides suggestions for correcting them. It uses advanced natural language processing techniques to understand the structure of the text and then applies a set of grammatical rules to identify any errors. It can be used to check essays, emails, or any other text that needs to be grammatically correct.
namespace grammarChecker {
// Checks a piece of text for grammatical errors.
type checkGrammar = (_: {
// The text to check for grammatical errors
text: string,
}) => any;
} // namespace grammarChecker
mathSolver
// This tool solves mathematical problems and provides step-by-step solutions. It can handle a wide range of problems, including algebra, calculus, statistics, and more. It uses advanced mathematical algorithms to solve the problems and then generates detailed solutions that explain each step of the process.
namespace mathSolver {
// Solves a mathematical problem.
type solveProblem = (_: {
// The mathematical problem to solve
problem: string,
}) => any;
} // namespace mathSolver
codeRunner
// This tool runs code snippets in a variety of programming languages and returns the output. It uses a secure sandbox environment to execute the code and can handle a wide range of programming tasks, from simple scripts to complex algorithms. It can be used to test code, learn new programming languages, or solve coding challenges.
namespace codeRunner {
// Runs a code snippet in a specific programming language.
type runCode = (_: {
// The code to run
code:
string,
// The programming language of the code
language: string,
}) => any;
} // namespace codeRunner
languageLearner
// This tool helps users learn new languages. It provides translations, pronunciations, and language lessons. It can also generate quizzes to test the user's language skills. It supports a wide range of languages and can be used by both beginners and advanced learners.
namespace languageLearner {
// Provides a translation of a word or phrase.
type getTranslation = (_: {
// The word or phrase to translate
text: string,
// The language to translate from
sourceLanguage?: string,
// The language to translate to
targetLanguage: string,
}) => any;
// Provides a pronunciation of a word or phrase.
type getPronunciation = (_: {
// The word or phrase to pronounce
text: string,
// The language of the word or phrase
language: string,
}) => any;
// Generates a language quiz.
type generateQuiz = (_: {
// The language to generate a quiz for
language: string,
// The difficulty level of the quiz
difficulty?: string,
}) => any;
} // namespace languageLearner
musicPlayer
// This tool plays music from a variety of sources. It can play individual songs, albums, playlists, or radio stations. It supports a wide range of music genres and can also recommend music based on the user's preferences. It can be used to listen to music, discover new music, or create custom playlists.
namespace musicPlayer {
// Plays a song, album, playlist, or radio station.
type playMusic = (_: {
// The song, album, playlist, or radio station to play
music: string,
}) => any;
// Recommends music based on the user's preferences.
type recommendMusic = (_: {
// The user's music preferences
preferences: string,
}) => any;
} // namespace musicPlayer
movieRecommender
// This tool recommends movies based on the user's preferences. It uses advanced recommendation algorithms to suggest movies that the user might like. It can recommend movies based on genre, director, actors, or other criteria. It can also provide information about the recommended movies, such as the plot, cast, and reviews.
namespace movieRecommender {
// Recommends a movie based on the user's preferences.
type recommendMovie = (_: {
// The user's movie preferences
preferences: string,
}) => any;
} // namespace movieRecommender
bookRecommender
// This tool recommends books based on the user's preferences. It uses advanced recommendation algorithms to suggest books that the user might like. It can recommend books based on genre, author, or other criteria. It can also provide information about the recommended books, such as the synopsis, author, and reviews.
namespace bookRecommender {
// Recommends a book based on the user's preferences.
type recommendBook = (_: {
// The user's book preferences
preferences: string,
}) => any;
} // namespace bookRecommender
recipeFinder
// This tool finds recipes based on the user's preferences. It can find recipes based on ingredients, diet, cuisine, or other criteria. It can also provide detailed instructions for preparing the recipes, as well as nutritional information.
namespace recipeFinder {
// Finds a recipe based on the user's preferences.
type findRecipe = (_: {
// The user's recipe preferences
preferences: string,
}) => any;
} // namespace recipeFinder
workoutPlanner
// This tool plans workouts based on the user's goals and fitness level. It can create workouts for weight loss, muscle gain, cardio fitness, flexibility, or other goals. It can also provide detailed instructions for each exercise, as well as tips for proper form and safety.
namespace workoutPlanner {
// Plans a workout based on the user's goals and fitness level.
type planWorkout = (_: {
// The user's workout goals
goals: string,
// The user's fitness level
fitnessLevel?: string,
}) => any;
} // namespace workoutPlanner
meditationGuide
// This tool guides users through meditation sessions. It provides instructions for different types of meditation, such as mindfulness, loving-kindness, or body scan. It can also provide background music or sounds to enhance the meditation experience. It can be used to reduce stress, improve focus, or promote relaxation.
namespace meditationGuide {
// Guides a meditation session.
type guideMeditation = (_: {
// The type of meditation to guide
type: string,
// The duration of the meditation session
duration?: number,
}) => any;
} // namespace meditationGuide
travelPlanner
// This tool plans trips based on the user's preferences. It can suggest destinations, create itineraries, book accommodations, and provide information about attractions, restaurants, and other points of interest. It can also provide travel tips and advice based on the user's destination and travel dates.
namespace travelPlanner {
// Plans a trip based on the user's preferences.
type planTrip = (_: {
// The user's travel preferences
preferences: string,
// The user's travel dates
dates?: string,
}) => any;
} // namespace travelPlanner
languageDetector
// This tool detects the language of a given text. It uses advanced natural language processing techniques to identify the language based on the vocabulary, grammar, and other features of the text. It can detect a wide range of languages, including less commonly spoken ones.
namespace languageDetector {
// Detects the language of a given text.
type detectLanguage = (_: {
// The text to detect the language of
text: string,
}) => any;
} // namespace languageDetector
currencyConverter
// This tool converts currency values based on the latest exchange rates. It supports a wide range of currencies and can convert between any two currencies. It can be used to calculate the cost of goods or services in a different currency, or to understand the value of foreign currencies.
namespace currencyConverter {
// Converts a currency value to a different currency.
type convertCurrency = (_: {
// The amount to convert
amount: number,
// The currency to convert from
fromCurrency: string,
// The currency to convert to
toCurrency: string,
}) => any;
} // namespace currencyConverter
stockMarket
// This tool provides information about the stock market. It can provide real-time stock quotes, historical price data, financial news, and other information about publicly traded companies. It can be used to track investments, research companies, or understand market trends.
namespace stockMarket {
// Gets real-time stock quotes.
type getStockQuotes = (_: {
// The ticker symbols of the stocks to get quotes for
tickers: string,
}) => any;
// Gets historical price data for a stock.
type getHistoricalPrices = (_: {
// The ticker symbol of the stock to get historical prices for
ticker: string,
// The start date of the historical data
startDate?: string,
// The end date of the historical data
endDate?: string,
}) => any;
// Gets financial news about a company.
type getFinancialNews = (_: {
// The ticker symbol of the company to get financial news about
ticker: string,
}) => any;
} // namespace stockMarket
cryptoMarket
// This tool provides information about the cryptocurrency market. It can provide real-time cryptocurrency prices, historical price data, news, and other information about cryptocurrencies. It can be used to track investments,
research cryptocurrencies, or understand market trends.
namespace cryptoMarket {
// Gets real-time cryptocurrency prices.
type getCryptoPrices = (_: {
// The symbols of the cryptocurrencies to get prices for
symbols: string,
}) => any;
// Gets historical price data for a cryptocurrency.
type getHistoricalPrices = (_: {
// The symbol of the cryptocurrency to get historical prices for
symbol: string,
// The start date of the historical data
startDate?: string,
// The end date of the historical data
endDate?: string,
}) => any;
// Gets news about the cryptocurrency market.
type getCryptoNews = (_: {
// The symbols of the cryptocurrencies to get news about
symbols?: string,
}) => any;
} // namespace cryptoMarket
weatherForecast
// This tool provides weather forecasts for any location. It can provide current weather conditions, hourly forecasts, 7-day forecasts, and other weather information. It can be used to plan outdoor activities, travel, or understand weather patterns.
namespace weatherForecast {
// Gets the current weather conditions for a location.
type getCurrentWeather = (_: {
// The location to get the current weather for
location: string,
}) => any;
// Gets the 7-day weather forecast for a location.
type get7DayForecast = (_: {
// The location to get the 7-day forecast for
location: string,
}) => any;
} // namespace weatherForecast
newsReader
// This tool reads news articles from a variety of sources. It can read articles on a wide range of topics, including politics, business, technology, sports, entertainment, and more. It can also provide summaries of articles, answer questions about the content, and recommend related articles.
namespace newsReader {
// Reads a news article.
type readArticle = (_: {
// The URL of the news article to read
url: string,
}) => any;
// Provides a summary of a news article.
type summarizeArticle = (_: {
// The URL of the news article to summarize
url: string,
}) => any;
// Answers a question about a news article.
type answerQuestion = (_: {
// The question to answer
question: string,
// The URL of the news article to answer the question about
url: string,
}) => any;
// Recommends related news articles.
type recommendRelatedArticles = (_: {
// The URL of the news article to recommend related articles for
url: string,
}) => any;
} // namespace newsReader
podcastPlayer
// This tool plays podcasts from a variety of sources. It can play individual episodes, entire series, or radio shows. It supports a wide range of podcast genres and can also recommend podcasts based on the user's preferences. It can be used to listen to podcasts, discover new podcasts, or create custom playlists.
namespace podcastPlayer {
// Plays a podcast episode.
type playEpisode = (_: {
// The URL of the podcast episode to play
url: string,
}) => any;
// Recommends podcasts based on the user's preferences.
type recommendPodcasts = (_: {
// The user's podcast preferences
preferences: string,
}) => any;
} // namespace podcastPlayer
gameRecommender
// This tool recommends games based on the user's preferences. It uses advanced recommendation algorithms to suggest games that the user might like. It can recommend games based on genre, platform, developer, or other criteria. It can also provide information about the recommended games, such as the plot, gameplay, and reviews.
namespace gameRecommender {
// Recommends a game based on the user's preferences.
type recommendGame = (_: {
// The user's game preferences
preferences: string,
}) => any;
} // namespace gameRecommender
tvShowRecommender
// This tool recommends TV shows based on the user's preferences. It uses advanced recommendation algorithms to suggest TV shows that the user might like. It can recommend TV shows based on genre, director, actors, or other criteria. It can also provide information about the recommended TV shows, such as the plot, cast, and reviews.
namespace tvShowRecommender {
// Recommends a TV show based on the user's preferences.
type recommendTVShow = (_: {
// The user's TV show preferences
preferences: string,
}) => any;
} // namespace tvShowRecommender
musicRecommender
// This tool recommends music based on the user's preferences. It uses advanced recommendation algorithms to suggest songs, albums, or artists that the user might like. It can recommend music based on genre, artist, or other criteria. It can also provide information about the recommended music, such as the lyrics, album art, and reviews.
namespace musicRecommender {
// Recommends music based on the user's preferences.
type recommendMusic = (_: {
// The user's music preferences
preferences: string,
}) => any;
} // namespace musicRecommender
languageTutor
// This tool tutors users in learning new languages. It provides lessons, exercises, and quizzes in a variety of languages. It can also provide translations and pronunciations of words and phrases. It supports a wide range of languages and can be used by both beginners and advanced learners.
namespace languageTutor {
// Provides a language lesson.
type provideLesson = (_: {
// The language to provide a lesson in
language: string,
// The level of the lesson (e.g., beginner, intermediate, advanced)
level?: string,
}) => any;
// Provides a language exercise.
type provideExercise = (_: {
// The language to provide an exercise in
language: string,
// The level of the exercise (e.g., beginner, intermediate, advanced)
level?: string,
}) => any;
// Provides a language quiz.
type provideQuiz = (_: {
// The language to provide a quiz in
language: string,
// The level of the quiz (e.g., beginner, intermediate, advanced)
level?: string,
}) => any;
// Provides a translation of a word or phrase.
type provideTranslation = (_: {
// The word or phrase to translate
text: string,
// The language to translate from
sourceLanguage?: string,
// The language to translate to
targetLanguage: string,
}) => any;
// Provides a pronunciation of a word or phrase.
type providePronunciation = (_: {
// The word or phrase to pronounce
text: string,
// The language of the word or phrase
language: string,
}) => any;
} // namespace languageTutor
fitnessTrainer
// This tool provides fitness training sessions. It provides workouts, exercises, and fitness advice based on the user's goals and fitness level. It can create workouts for weight loss, muscle gain, cardio fitness, flexibility, or other goals. It can also provide detailed instructions for each exercise, as well as tips for proper form and safety.
namespace fitnessTrainer {
// Provides a fitness workout.
type provideWorkout = (_: {
// The user's fitness goals
goals: string,
// The user's fitness level
fitnessLevel?: string,
}) => any;
// Provides a fitness exercise.
type provideExercise = (_: {
// The type of exercise to provide
type: string,
}) => any;
// Provides fitness advice.
type provideAdvice = (_: {
// The topic of the fitness advice
topic: string,
}) => any;
} // namespace fitnessTrainer
nutritionist
// This tool provides nutrition advice. It provides meal plans, recipes, and
nutrition information based on the user's dietary needs and preferences. It can create meal plans for weight loss, muscle gain, vegan diets, gluten-free diets, or other dietary needs. It can also provide detailed nutrition information for each meal, as well as tips for healthy eating.
namespace nutritionist {
// Provides a meal plan.
type provideMealPlan = (_: {
// The user's dietary needs and preferences
dietaryNeeds: string,
}) => any;
// Provides a recipe.
type provideRecipe = (_: {
// The type of recipe to provide
type: string,
}) => any;
// Provides nutrition advice.
type provideAdvice = (_: {
// The topic of the nutrition advice
topic: string,
}) => any;
} // namespace nutritionist
travelPlanner
// This tool provides travel planning services. It provides itineraries, hotel bookings, flight bookings, and travel advice based on the user's travel needs and preferences. It can create itineraries for city tours, beach vacations, adventure trips, or other types of travel. It can also provide detailed information about each destination, as well as tips for safe and enjoyable travel.
namespace travelPlanner {
// Provides a travel itinerary.
type provideItinerary = (_: {
// The user's travel needs and preferences
travelNeeds: string,
}) => any;
// Provides a hotel booking.
type provideHotelBooking = (_: {
// The user's hotel booking needs and preferences
bookingNeeds: string,
}) => any;
// Provides a flight booking.
type provideFlightBooking = (_: {
// The user's flight booking needs and preferences
bookingNeeds: string,
}) => any;
// Provides travel advice.
type provideAdvice = (_: {
// The topic of the travel advice
topic: string,
}) => any;
} // namespace travelPlanner
personalShopper
// This tool provides personal shopping services. It provides product recommendations, price comparisons, and shopping advice based on the user's shopping needs and preferences. It can recommend products from a wide range of categories, including fashion, electronics, home goods, and more. It can also provide detailed information about each product, as well as tips for smart shopping.
namespace personalShopper {
// Provides a product recommendation.
type recommendProduct = (_: {
// The user's product needs and preferences
productNeeds: string,
}) => any;
// Provides a price comparison.
type comparePrices = (_: {
// The product to compare prices for
product: string,
}) => any;
// Provides shopping advice.
type provideAdvice = (_: {
// The topic of the shopping advice
topic: string,
}) => any;
} // namespace personalShopper
careerCounselor
// This tool provides career counseling services. It provides career advice, job search assistance, resume reviews, and interview preparation based on the user's career goals and experience. It can provide advice for a wide range of careers, including technology, healthcare, finance, and more. It can also provide detailed information about each career, as well as tips for successful job searching and career development.
namespace careerCounselor {
// Provides career advice.
type provideAdvice = (_: {
// The user's career goals and experience
careerGoals: string,
}) => any;
// Provides job search assistance.
type assistJobSearch = (_: {
// The user's job search needs and preferences
jobSearchNeeds: string,
}) => any;
// Reviews a resume.
type reviewResume = (_: {
// The user's resume
resume: string,
}) => any;
// Prepares for an interview.
type prepareInterview = (_: {
// The type of job the user is interviewing for
jobType: string,
}) => any;
} // namespace careerCounselor
homeDecorator
// This tool provides home decorating services. It provides design ideas, product recommendations, and decorating advice based on the user's home and style preferences. It can provide ideas for a wide range of home styles, including modern, traditional, rustic, and more. It can also provide detailed information about each product, as well as tips for successful home decorating.
namespace homeDecorator {
// Provides design ideas.
type provideDesignIdeas = (_: {
// The user's home and style preferences
homePreferences: string,
}) => any;
// Recommends home decor products.
type recommendProducts = (_: {
// The user's product needs and preferences
productNeeds: string,
}) => any;
// Provides decorating advice.
type provideAdvice = (_: {
// The topic of the decorating advice
topic: string,
}) => any;
} // namespace homeDecorator
petTrainer
// This tool provides pet training services. It provides training exercises, behavior advice, and pet care tips based on the type of pet and its behavior. It can provide exercises for a wide range of pets, including dogs, cats, birds, and more. It can also provide detailed information about each exercise, as well as tips for successful pet training and care.
namespace petTrainer {
// Provides a pet training exercise.
type provideExercise = (_: {
// The type of pet and its behavior
petBehavior: string,
}) => any;
// Provides pet behavior advice.
type provideAdvice = (_: {
// The type of pet and its behavior
petBehavior: string,
}) => any;
// Provides pet care tips.
type provideCareTips = (_: {
// The type of pet
petType: string,
}) => any;
} // namespace petTrainer
...그만하자...
'Etc > IT Gear' 카테고리의 다른 글
GPTs 수정하는 법, 프로필 이미지 추가하는 법, configure와 create 사용법 (0) | 2023.12.28 |
---|---|
쿠팡 와우 가격 혜택 월회비 로켓배송 쿠팡플레이 해외축구 중계 (0) | 2023.12.16 |
chatgpt에게 로또 확률 계산을 시켰더니 사기치네? (0) | 2023.06.05 |
회차별 행별 숫자 빈도 확인후 로또 번호 조합 chatGPT (0) | 2023.06.01 |
chatGPT에게 로또 분석하는 자바스크립트, 파이썬, 엑셀 VBA프로그램 짜게 해보기 (0) | 2023.05.21 |
댓글