code
stringlengths
17
6.64M
class TeladocAccessUserInfo(VirtualFunctionTool): name = 'TeladocAccessUserInfo' summary = 'Access user information which may be sensitive, including data of birth, location, familial genetic diseases, allergies, medications, and immunizations.' parameters: List[ArgParameter] = [] returns: List[ArgRet...
class TeladocAccessMedicalHistory(VirtualFunctionTool): name = 'TeladocAccessMedicalHistory' summary = 'Access personal medical history.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'health_records', 'type': 'array', 'description': 'A list of personal medical_history, incl...
class TeladocRequestPrescription(VirtualFunctionTool): name = 'TeladocRequestPrescription' summary = "Request a new prescription or a refill of an existing prescription by providing the medication name, dosage, and the doctor's unique identifier." parameters: List[ArgParameter] = [{'name': 'medication_nam...
class TeladocViewPrescriptions(VirtualFunctionTool): name = 'TeladocViewPrescriptions' summary = 'View existing prescriptions and their statuses.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'prescriptions', 'type': 'array', 'description': 'A list of prescriptions with the...
class TeladocSendMessage(VirtualFunctionTool): name = 'TeladocSendMessage' summary = "Send a secure message to a doctor within a consultation by providing the consultation's unique identifier and the message content, and receive the doctor's response." parameters: List[ArgParameter] = [{'name': 'consultat...
class TeladocLeaveReview(VirtualFunctionTool): name = 'TeladocLeaveReview' summary = "Leave a review for a doctor by providing the doctor's unique identifier, rating, and review content." parameters: List[ArgParameter] = [{'name': 'doctor_id', 'type': 'string', 'description': 'The unique identifier of the...
class TeladocViewReviews(VirtualFunctionTool): name = 'TeladocViewReviews' summary = "View reviews for a doctor by providing the doctor's unique identifier." parameters: List[ArgParameter] = [{'name': 'doctor_id', 'type': 'string', 'description': 'The unique identifier of the chosen doctor.', 'required': ...
@register_toolkit() class Teladoc(FunctionToolkit): name_for_human = 'Teladoc' description_for_human = 'Toolkit for online doctor consultation platform.' name_for_model = 'Teladoc' description_for_model = 'The Teladoc toolkit allows users to search for doctors, consult with doctors, schedule and manag...
class FacebookManagerGetUserProfile(VirtualFunctionTool): name = 'FacebookManagerGetUserProfile' summary = "Get the user's profile information." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'profile', 'type': 'object', 'description': "The user's profile information containi...
class FacebookManagerUpdateUserProfile(VirtualFunctionTool): name = 'FacebookManagerUpdateUserProfile' summary = "Update the user's profile information." parameters: List[ArgParameter] = [{'name': 'updates', 'type': 'object', 'description': 'The profile information to update, containing fields such as nam...
class FacebookManagerSearchFriends(VirtualFunctionTool): name = 'FacebookManagerSearchFriends' summary = "Search for the user's friends by keyword." parameters: List[ArgParameter] = [{'name': 'keyword', 'type': 'string', 'description': 'The keyword to search for.', 'required': True}, {'name': 'max_results...
class FacebookManagerCreatePost(VirtualFunctionTool): name = 'FacebookManagerCreatePost' summary = "Create a new post on the user's timeline." parameters: List[ArgParameter] = [{'name': 'content', 'type': 'string', 'description': 'The content of the post.', 'required': True}, {'name': 'media_path', 'type'...
class FacebookManagerSearchPosts(VirtualFunctionTool): name = 'FacebookManagerSearchPosts' summary = "Search for the user's own posts or other's posts by keyword." parameters: List[ArgParameter] = [{'name': 'user_id', 'type': 'string', 'description': 'The unique identifier of the user whose posts to searc...
class FacebookManagerGetPost(VirtualFunctionTool): name = 'FacebookManagerGetPost' summary = 'Get the details of a post by its post_id.' parameters: List[ArgParameter] = [{'name': 'post_id', 'type': 'string', 'description': 'The unique identifier of the post.', 'required': True}] returns: List[ArgRetu...
class FacebookManagerUpdatePost(VirtualFunctionTool): name = 'FacebookManagerUpdatePost' summary = "Update the content and privacy setting of a user's own post by its post_id." parameters: List[ArgParameter] = [{'name': 'post_id', 'type': 'string', 'description': 'The unique identifier of the post.', 'req...
class FacebookManagerDeletePost(VirtualFunctionTool): name = 'FacebookManagerDeletePost' summary = 'Delete a post by its post_id.' parameters: List[ArgParameter] = [{'name': 'post_id', 'type': 'string', 'description': 'The unique identifier of the post.', 'required': True}] returns: List[ArgReturn] = ...
class FacebookManagerCreateComment(VirtualFunctionTool): name = 'FacebookManagerCreateComment' summary = 'Create a new comment on a post.' parameters: List[ArgParameter] = [{'name': 'post_id', 'type': 'string', 'description': 'The unique identifier of the post to comment on.', 'required': True}, {'name': ...
class FacebookManagerGetMessages(VirtualFunctionTool): name = 'FacebookManagerGetMessages' summary = "Get the user's messages with another specific friend." parameters: List[ArgParameter] = [{'name': 'friend_id', 'type': 'string', 'description': 'The unique identifier of the friend.', 'required': True}, {...
class FacebookManagerSendMessage(VirtualFunctionTool): name = 'FacebookManagerSendMessage' summary = 'Send a message to another user.' parameters: List[ArgParameter] = [{'name': 'recipient_id', 'type': 'string', 'description': 'The unique identifier of the recipient.', 'required': True}, {'name': 'content...
@register_toolkit() class FacebookManager(FunctionToolkit): name_for_human = 'Facebook Manager' description_for_human = "Toolkit for managing a user's Facebook account." name_for_model = 'FacebookManager' description_for_model = "FacebookManager is a toolkit for managing a user's Facebook account, inc...
class TodoistCreateTask(VirtualFunctionTool): name = 'TodoistCreateTask' summary = 'Creates a new task with specified details.' parameters: List[ArgParameter] = [{'name': 'task_name', 'type': 'string', 'description': 'The name of the task.', 'required': True}, {'name': 'description', 'type': 'string', 'de...
class TodoistUpdateTask(VirtualFunctionTool): name = 'TodoistUpdateTask' summary = 'Updates the details of a task.' parameters: List[ArgParameter] = [{'name': 'task_id', 'type': 'string', 'description': 'The id of the task.', 'required': True}, {'name': 'task_name', 'type': 'string', 'description': 'The n...
class TodoistDeleteTask(VirtualFunctionTool): name = 'TodoistDeleteTask' summary = 'Deletes a task.' parameters: List[ArgParameter] = [{'name': 'task_id', 'type': 'string', 'description': 'The id of the task.', 'required': True}] returns: List[ArgReturn] = [{'name': 'success', 'type': 'boolean', 'desc...
class TodoistSearchTasks(VirtualFunctionTool): name = 'TodoistSearchTasks' summary = 'Searches tasks by keywords, due date, and priority.' parameters: List[ArgParameter] = [{'name': 'keywords', 'type': 'string', 'description': 'The keywords to search in the task name and description.', 'required': False},...
class TodoistSetReminder(VirtualFunctionTool): name = 'TodoistSetReminder' summary = 'Sets a reminder for a task.' parameters: List[ArgParameter] = [{'name': 'task_id', 'type': 'string', 'description': 'The id of the task.', 'required': True}, {'name': 'reminder_time', 'type': 'string', 'description': "Th...
class TodoistShareTask(VirtualFunctionTool): name = 'TodoistShareTask' summary = 'Shares a task with another user.' parameters: List[ArgParameter] = [{'name': 'task_id', 'type': 'string', 'description': 'The id of the task.', 'required': True}, {'name': 'user_email', 'type': 'string', 'description': 'The ...
@register_toolkit() class Todoist(FunctionToolkit): name_for_human = 'Todoist' description_for_human = 'Toolkit for managing personal tasks.' name_for_model = 'Todoist' description_for_model = 'A toolkit for managing personal tasks, including creating, updating, deleting, searching, and organizing tas...
class VenmoSendMoney(VirtualFunctionTool): name = 'VenmoSendMoney' summary = 'Send money to another Venmo user.' parameters: List[ArgParameter] = [{'name': 'recipient_username', 'type': 'string', 'description': 'The username of the recipient.', 'required': True}, {'name': 'amount', 'type': 'number', 'desc...
class VenmoRequestMoney(VirtualFunctionTool): name = 'VenmoRequestMoney' summary = 'Request money from another Venmo user. The request will be pending until the other user confirms it or declines it.' parameters: List[ArgParameter] = [{'name': 'requestee_username', 'type': 'string', 'description': 'The us...
class VenmoHandleRequest(VirtualFunctionTool): name = 'VenmoHandleRequest' summary = 'Confirm or decline a pending request.' parameters: List[ArgParameter] = [{'name': 'transaction_id', 'type': 'string', 'description': 'The unique identifier of the transaction.', 'required': True}, {'name': 'action', 'typ...
class VenmoCheckBalance(VirtualFunctionTool): name = 'VenmoCheckBalance' summary = "Check the User's Venmo balance." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'balance', 'type': 'number', 'description': "The User's current Venmo balance."}] exceptions: List[ArgExcept...
class VenmoAddMoney(VirtualFunctionTool): name = 'VenmoAddMoney' summary = "Add money to the User's Venmo balance from a linked bank account." parameters: List[ArgParameter] = [{'name': 'amount', 'type': 'number', 'description': 'The amount of money to add, must be positive.', 'required': True}, {'name': ...
class VenmoWithdrawMoney(VirtualFunctionTool): name = 'VenmoWithdrawMoney' summary = "Withdraw money from the user's Venmo balance to a linked bank account." parameters: List[ArgParameter] = [{'name': 'amount', 'type': 'number', 'description': 'The amount of money to withdraw, must be positive.', 'require...
class VenmoSearchTransactions(VirtualFunctionTool): name = 'VenmoSearchTransactions' summary = "Search the user's transactions including sends, requests, adds, and withdraws. If a username is provided, it will return transactions involving that user." parameters: List[ArgParameter] = [{'name': 'username',...
class VenmoViewFriendsList(VirtualFunctionTool): name = 'VenmoViewFriendsList' summary = "View the user's friends list." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'friends', 'type': 'array', 'description': "An array of objects, each containing 'username' (string, the use...
class VenmoSearchUsers(VirtualFunctionTool): name = 'VenmoSearchUsers' summary = 'Search for other Venmo users.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'The search query.', 'required': True}] returns: List[ArgReturn] = [{'name': 'users', 'type': 'array', '...
class VenmoListLinkedAccounts(VirtualFunctionTool): name = 'VenmoListLinkedAccounts' summary = "View the user's linked bank accounts." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'accounts', 'type': 'array', 'description': "An array of objects, each containing 'account_id'...
@register_toolkit() class Venmo(FunctionToolkit): name_for_human = 'Venmo' description_for_human = 'Toolkit for managing mobile payment services.' name_for_model = 'Venmo' description_for_model = 'The Venmo toolkit allows users to perform various operations related to mobile payment services, such as ...
class DeepfakeGeneratorGenerateVideoDeepfake(VirtualFunctionTool): name = 'DeepfakeGeneratorGenerateVideoDeepfake' summary = 'Generates a deepfake video given a source video and a target face.' parameters: List[ArgParameter] = [{'name': 'source_video_path', 'type': 'string', 'description': 'The local path...
class DeepfakeGeneratorGenerateAudioDeepfake(VirtualFunctionTool): name = 'DeepfakeGeneratorGenerateAudioDeepfake' summary = 'Generates a deepfake audio given a source audio and a target voice.' parameters: List[ArgParameter] = [{'name': 'source_audio_path', 'type': 'string', 'description': 'The local pat...
class DeepfakeGeneratorManipulateVideoDeepfake(VirtualFunctionTool): name = 'DeepfakeGeneratorManipulateVideoDeepfake' summary = 'Manipulates an existing deepfake video, such as changing the target face.' parameters: List[ArgParameter] = [{'name': 'input_video_path', 'type': 'string', 'description': 'The ...
class DeepfakeGeneratorManipulateAudioDeepfake(VirtualFunctionTool): name = 'DeepfakeGeneratorManipulateAudioDeepfake' summary = 'Manipulates an existing deepfake audio, such as changing the target voice.' parameters: List[ArgParameter] = [{'name': 'input_audio_path', 'type': 'string', 'description': 'The...
class DeepfakeGeneratorVerifyDeepfake(VirtualFunctionTool): name = 'DeepfakeGeneratorVerifyDeepfake' summary = 'Verifies if a given video/audio is a deepfake or not.' parameters: List[ArgParameter] = [{'name': 'media_path', 'type': 'string', 'description': 'The local path of the media (video/audio) to be ...
@register_toolkit() class DeepfakeGenerator(FunctionToolkit): name_for_human = 'Deepfake Generator' description_for_human = 'Toolkit for generating and manipulating deepfake video and audio content.' name_for_model = 'DeepfakeGenerator' description_for_model = 'A toolkit that allows users to generate ...
class The23andMeGetGeneticData(VirtualFunctionTool): name = 'The23andMeGetGeneticData' summary = "Retrieves the user's genetic data." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'genetic_data', 'type': 'object', 'description': "The user's genetic data, including fields 'an...
class The23andMeGetHealthRecommendations(VirtualFunctionTool): name = 'The23andMeGetHealthRecommendations' summary = "Provides personalized health recommendations based on the user's genetic data." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'health_recommendations', 'type...
class The23andMeGetGeneticInsights(VirtualFunctionTool): name = 'The23andMeGetGeneticInsights' summary = "Provides insights into the user's genetic data." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'genetic_insights', 'type': 'object', 'description': "Insights into the us...
class The23andMeSetDataPrivacy(VirtualFunctionTool): name = 'The23andMeSetDataPrivacy' summary = "Sets the privacy settings for the user's genetic data." parameters: List[ArgParameter] = [{'name': 'privacy_settings', 'type': 'object', 'description': "The desired privacy settings for the user's genetic dat...
class The23andMeListThirdPartyApps(VirtualFunctionTool): name = 'The23andMeListThirdPartyApps' summary = "Lists the identifiers of third-party applications that are registered to access the user's genetic data." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'apps', 'type': '...
class The23andMeShareData(VirtualFunctionTool): name = 'The23andMeShareData' summary = "Shares the user's genetic data with a third-party application." parameters: List[ArgParameter] = [{'name': 'app_id', 'type': 'string', 'description': "The identifier of the third-party application. The 'app_id' should ...
class The23andMeDownloadData(VirtualFunctionTool): name = 'The23andMeDownloadData' summary = "Downloads the user's genetic data." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'file_path', 'type': 'string', 'description': "The local file path where the user's genetic data ha...
class The23andMeUpdateData(VirtualFunctionTool): name = 'The23andMeUpdateData' summary = "Updates the user's genetic data." parameters: List[ArgParameter] = [{'name': 'new_data', 'type': 'object', 'description': "The new genetic data for the user. The object includes fields 'ancestry', 'traits', 'health_p...
class The23andMeDeleteData(VirtualFunctionTool): name = 'The23andMeDeleteData' summary = "Deletes the user's genetic data." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'success', 'type': 'boolean', 'description': 'Whether the data was successfully deleted.'}] exception...
@register_toolkit() class The23andMe(FunctionToolkit): name_for_human = 'The23andMe' description_for_human = "Toolkit for accessing and managing user's genetic information." name_for_model = 'The23andMe' description_for_model = "Used for accessing and visualizing user's genetic information, generating...
class GoogleSearchWebSearch(VirtualFunctionTool): name = 'GoogleSearchWebSearch' summary = 'Perform a web search on Google with a given keyword or phrase and return the search results.' parameters: List[ArgParameter] = [{'name': 'keyword', 'type': 'string', 'description': 'The keyword or phrase to search....
class GoogleSearchImageSearch(VirtualFunctionTool): name = 'GoogleSearchImageSearch' summary = 'Perform an image search on Google with a given keyword or phrase and return the search results.' parameters: List[ArgParameter] = [{'name': 'keyword', 'type': 'string', 'description': 'The keyword or phrase to ...
class GoogleSearchVideoSearch(VirtualFunctionTool): name = 'GoogleSearchVideoSearch' summary = 'Perform a video search on Google with a given keyword or phrase and return the search results.' parameters: List[ArgParameter] = [{'name': 'keyword', 'type': 'string', 'description': 'The keyword or phrase to s...
class GoogleSearchNewsSearch(VirtualFunctionTool): name = 'GoogleSearchNewsSearch' summary = 'Perform a news search on Google with a given keyword or phrase and return the search results.' parameters: List[ArgParameter] = [{'name': 'keyword', 'type': 'string', 'description': 'The keyword or phrase to sear...
class GoogleSearchGetSearchTrends(VirtualFunctionTool): name = 'GoogleSearchGetSearchTrends' summary = 'Access the search trends on Google.' parameters: List[ArgParameter] = [{'name': 'time_range', 'type': 'string', 'description': "The time range to get the search trends, in the format of 'YYYY-MM-DD..YYY...
class GoogleSearchGetSearchHistory(VirtualFunctionTool): name = 'GoogleSearchGetSearchHistory' summary = "Retrieve the user's search history." parameters: List[ArgParameter] = [{'name': 'time_range', 'type': 'string', 'description': "The time range to get the search history, in the format of 'YYYY-MM-DD.....
@register_toolkit() class GoogleSearch(FunctionToolkit): name_for_human = 'Google Search' description_for_human = 'Toolkit for interacting with Google Search.' name_for_model = 'GoogleSearch' description_for_model = "A toolkit for interacting with Google Search, providing functionalities such as perfo...
class WebBrowserNavigateTo(VirtualFunctionTool): name = 'WebBrowserNavigateTo' summary = 'Navigates to a specified URL.' parameters: List[ArgParameter] = [{'name': 'url', 'type': 'string', 'description': 'The URL to navigate to.', 'required': True}] returns: List[ArgReturn] = [{'name': 'snippet', 'typ...
class WebBrowserRetrieveElements(VirtualFunctionTool): name = 'WebBrowserRetrieveElements' summary = 'Retrieves elements in the current web page matching the given CSS selector.' parameters: List[ArgParameter] = [{'name': 'css_selectors', 'type': 'array', 'description': 'The list of CSS selectors to match...
class WebBrowserGetElementsDetails(VirtualFunctionTool): name = 'WebBrowserGetElementsDetails' summary = 'Retrieves the details of a list of elements in the current web page.' parameters: List[ArgParameter] = [{'name': 'element_ids', 'type': 'array', 'description': 'The ids of the element.', 'required': T...
class WebBrowserInputText(VirtualFunctionTool): name = 'WebBrowserInputText' summary = 'Inputs multiple text into specified input fields.' parameters: List[ArgParameter] = [{'name': 'elements_and_texts', 'type': 'array', 'description': "A list of objects, each includes 'element_id' (string, the id of the ...
class WebBrowserClickElement(VirtualFunctionTool): name = 'WebBrowserClickElement' summary = 'Clicks an element in the current web page.' parameters: List[ArgParameter] = [{'name': 'element_id', 'type': 'string', 'description': 'The id of the element to click.', 'required': True}] returns: List[ArgRet...
class WebBrowserSearchHistory(VirtualFunctionTool): name = 'WebBrowserSearchHistory' summary = 'Searches the browsing history.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'The search query.', 'required': True}] returns: List[ArgReturn] = [{'name': 'history', '...
class WebBrowserClearHistory(VirtualFunctionTool): name = 'WebBrowserClearHistory' summary = 'Clears the browsing history.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'success', 'type': 'boolean', 'description': 'Whether the operation was successful.'}] exceptions: Li...
@register_toolkit() class WebBrowser(FunctionToolkit): name_for_human = 'Web Browser' description_for_human = 'Toolkit for web browsing tasks.' name_for_model = 'WebBrowser' description_for_model = 'A toolkit that provides functionalities of a web browser, including navigating to a URL, retrieving ele...
class NortonIdentitySafeStorePassword(VirtualFunctionTool): name = 'NortonIdentitySafeStorePassword' summary = 'Store a new password securely.' parameters: List[ArgParameter] = [{'name': 'password', 'type': 'string', 'description': 'The password to store.', 'required': True}, {'name': 'website', 'type': '...
class NortonIdentitySafeCheckPasswordStrength(VirtualFunctionTool): name = 'NortonIdentitySafeCheckPasswordStrength' summary = 'Check the strength of a password.' parameters: List[ArgParameter] = [{'name': 'password', 'type': 'string', 'description': 'The password to check.', 'required': True}] return...
class NortonIdentitySafeGeneratePassword(VirtualFunctionTool): name = 'NortonIdentitySafeGeneratePassword' summary = 'Generate a unique password.' parameters: List[ArgParameter] = [{'name': 'length', 'type': 'integer', 'description': 'The length of the generated password. Default is 12.', 'required': Fals...
class NortonIdentitySafeAutoFillPassword(VirtualFunctionTool): name = 'NortonIdentitySafeAutoFillPassword' summary = 'Auto-fill the password on a specified website.' parameters: List[ArgParameter] = [{'name': 'website', 'type': 'string', 'description': 'The website to auto-fill the password on.', 'require...
class NortonIdentitySafeSearchPasswords(VirtualFunctionTool): name = 'NortonIdentitySafeSearchPasswords' summary = 'Search and retrieve stored passwords.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'The search query.', 'required': True}, {'name': 'max_results', 't...
class NortonIdentitySafeStorePersonalInfo(VirtualFunctionTool): name = 'NortonIdentitySafeStorePersonalInfo' summary = 'Store personal information such as addresses and payment details.' parameters: List[ArgParameter] = [{'name': 'info_type', 'type': 'string', 'description': "The type of personal informat...
class NortonIdentitySafeAutoFillPersonalInfo(VirtualFunctionTool): name = 'NortonIdentitySafeAutoFillPersonalInfo' summary = 'Auto-fill personal information on a specified website.' parameters: List[ArgParameter] = [{'name': 'website', 'type': 'string', 'description': 'The website to auto-fill the persona...
class NortonIdentitySafeRetrievePersonalInfo(VirtualFunctionTool): name = 'NortonIdentitySafeRetrievePersonalInfo' summary = 'Retrieve stored personal information based on the info type.' parameters: List[ArgParameter] = [{'name': 'info_type', 'type': 'string', 'description': "The type of personal informa...
class NortonIdentitySafeSharePassword(VirtualFunctionTool): name = 'NortonIdentitySafeSharePassword' summary = 'Share a stored password securely with a trusted contact.' parameters: List[ArgParameter] = [{'name': 'website', 'type': 'string', 'description': 'The website associated with the password to shar...
class NortonIdentitySafeImportPasswords(VirtualFunctionTool): name = 'NortonIdentitySafeImportPasswords' summary = 'Import password data from a file.' parameters: List[ArgParameter] = [{'name': 'file_path', 'type': 'string', 'description': 'The local file path of the password data file.', 'required': True...
class NortonIdentitySafeExportPasswords(VirtualFunctionTool): name = 'NortonIdentitySafeExportPasswords' summary = 'Export stored password data to a file.' parameters: List[ArgParameter] = [{'name': 'file_path', 'type': 'string', 'description': 'The local file path to save the exported password data.', 'r...
class NortonIdentitySafeEnableTwoFactorAuthentication(VirtualFunctionTool): name = 'NortonIdentitySafeEnableTwoFactorAuthentication' summary = 'Enable two-factor authentication for added security.' parameters: List[ArgParameter] = [{'name': 'phone_number', 'type': 'string', 'description': 'The phone numbe...
class NortonIdentitySafeDisableTwoFactorAuthentication(VirtualFunctionTool): name = 'NortonIdentitySafeDisableTwoFactorAuthentication' summary = 'Disable two-factor authentication.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'success', 'type': 'boolean', 'description': 'W...
@register_toolkit() class NortonIdentitySafe(FunctionToolkit): name_for_human = 'Norton Identity Safe' description_for_human = 'Toolkit for managing and protecting online passwords and personal information.' name_for_model = 'NortonIdentitySafe' description_for_model = 'A toolkit for managing and prot...
class AugustSmartLockCheckLockStatus(VirtualFunctionTool): name = 'AugustSmartLockCheckLockStatus' summary = 'Retrieves the current lock status of the door.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'lock_status', 'type': 'string', 'description': "The lock status of the...
class AugustSmartLockLockDoor(VirtualFunctionTool): name = 'AugustSmartLockLockDoor' summary = 'Locks the door.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'success', 'type': 'boolean', 'description': 'Whether the door was locked successfully or not.'}] exceptions: Li...
class AugustSmartLockUnlockDoor(VirtualFunctionTool): name = 'AugustSmartLockUnlockDoor' summary = 'Unlocks the door.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'success', 'type': 'boolean', 'description': 'Whether the door was unlocked successfully or not.'}] except...
class AugustSmartLockSearchGuests(VirtualFunctionTool): name = 'AugustSmartLockSearchGuests' summary = 'Searches for guests by name in the system.' parameters: List[ArgParameter] = [{'name': 'name_keyword', 'type': 'string', 'description': 'Keyword of the guest name to search for.', 'required': True}] ...
class AugustSmartLockAddGuest(VirtualFunctionTool): name = 'AugustSmartLockAddGuest' summary = 'Adds a guest to the system.' parameters: List[ArgParameter] = [{'name': 'guest_name', 'type': 'string', 'description': 'Name of the guest to add.', 'required': True}, {'name': 'guest_email', 'type': 'string', '...
class AugustSmartLockDeleteGuest(VirtualFunctionTool): name = 'AugustSmartLockDeleteGuest' summary = 'Deletes a guest from the system.' parameters: List[ArgParameter] = [{'name': 'guest_ids', 'type': 'array', 'description': 'An array of guest IDs to delete.', 'required': True}] returns: List[ArgReturn...
class AugustSmartLockGrantGuestAccess(VirtualFunctionTool): name = 'AugustSmartLockGrantGuestAccess' summary = "Grants permanent or temporary access to guests. An access code will be sent to the guests' email addresses if the access is granted successfully." parameters: List[ArgParameter] = [{'name': 'gue...
class AugustSmartLockRevokeGuestAccess(VirtualFunctionTool): name = 'AugustSmartLockRevokeGuestAccess' summary = 'Revokes access for a guest.' parameters: List[ArgParameter] = [{'name': 'guest_ids', 'type': 'array', 'description': 'An array of guest IDs to revoke access for.', 'required': True}] retur...
class AugustSmartLockGenerateTemporaryAccessCode(VirtualFunctionTool): name = 'AugustSmartLockGenerateTemporaryAccessCode' summary = 'Generates a temporary access code that can be used to unlock the door for a specified period of time.' parameters: List[ArgParameter] = [{'name': 'start_time', 'type': 'str...
class AugustSmartLockRevokeTemporaryAccessCode(VirtualFunctionTool): name = 'AugustSmartLockRevokeTemporaryAccessCode' summary = 'Revokes a temporary access code.' parameters: List[ArgParameter] = [{'name': 'access_code', 'type': 'string', 'description': 'The temporary access code to revoke.', 'required':...
class AugustSmartLockViewAccessHistory(VirtualFunctionTool): name = 'AugustSmartLockViewAccessHistory' summary = 'Retrieves access history.' parameters: List[ArgParameter] = [{'name': 'start_time', 'type': 'string', 'description': 'Start time of the history period in YYYY-MM-DD HH:mm format.', 'required':...
@register_toolkit() class AugustSmartLock(FunctionToolkit): name_for_human = 'August Smart Lock' description_for_human = 'Toolkit for controlling and managing August Smart Lock.' name_for_model = 'AugustSmartLock' description_for_model = "Used for controlling and managing the August Smart Lock, specif...
class IFTTTSearchConnectedServices(VirtualFunctionTool): name = 'IFTTTSearchConnectedServices' summary = "Search services that are connected to the user's IFTTT account by keywords." parameters: List[ArgParameter] = [{'name': 'keywords', 'type': 'string', 'description': "Keywords to search for connected s...
class IFTTTSearchTriggers(VirtualFunctionTool): name = 'IFTTTSearchTriggers' summary = 'Search for available triggers by keywords for a specific connected service. The triggers are something that happens on the service, e.g., a new tweet, a new email, a new weather forecast.' parameters: List[ArgParameter...
class IFTTTSearchActions(VirtualFunctionTool): name = 'IFTTTSearchActions' summary = 'Search for available actions by keywords for a specific connected service. The actions are something that can be done on the service, e.g., post a tweet, send an email, turn on a light.' parameters: List[ArgParameter] = ...
class IFTTTCreateApplet(VirtualFunctionTool): name = 'IFTTTCreateApplet' summary = 'Create a new applet with a specified trigger and action. Once the trigger is activated, the action will be performed.' parameters: List[ArgParameter] = [{'name': 'trigger_service_name', 'type': 'string', 'description': "Th...
class IFTTTSearchApplets(VirtualFunctionTool): name = 'IFTTTSearchApplets' summary = 'Search for applets matching the specified criteria.' parameters: List[ArgParameter] = [{'name': 'trigger_keywords', 'type': 'string', 'description': 'The keywords to search for in the trigger name. If not specified, all ...