code
stringlengths
17
6.64M
class IFTTTUpdateApplet(VirtualFunctionTool): name = 'IFTTTUpdateApplet' summary = 'Update an existing applet with new trigger and action settings.' parameters: List[ArgParameter] = [{'name': 'applet_id', 'type': 'string', 'description': 'The unique identifier of the applet to update.', 'required': True},...
class IFTTTDeleteApplets(VirtualFunctionTool): name = 'IFTTTDeleteApplets' summary = 'Delete the specified applets.' parameters: List[ArgParameter] = [{'name': 'applet_ids', 'type': 'array', 'description': 'The list of unique identifiers of the applets to delete.', 'required': True}] returns: List[Arg...
@register_toolkit() class IFTTT(FunctionToolkit): name_for_human = 'IFTTT' description_for_human = 'Toolkit for creating and managing IFTTT applets and connected services.' name_for_model = 'IFTTT' description_for_model = 'The IFTTT toolkit connect different services together using applets. Each apple...
class EvernoteManagerCreateNote(VirtualFunctionTool): name = 'EvernoteManagerCreateNote' summary = 'Create a new note with a title, content, and optional attachments.' parameters: List[ArgParameter] = [{'name': 'title', 'type': 'string', 'description': 'The title of the note.', 'required': True}, {'name':...
class EvernoteManagerReadNote(VirtualFunctionTool): name = 'EvernoteManagerReadNote' summary = 'Retrieve the content of a note by its unique identifier.' parameters: List[ArgParameter] = [{'name': 'note_id', 'type': 'string', 'description': 'The unique identifier of the note.', 'required': True}] retu...
class EvernoteManagerUpdateNote(VirtualFunctionTool): name = 'EvernoteManagerUpdateNote' summary = 'Update the content, title, or attachments of a note by its unique identifier.' parameters: List[ArgParameter] = [{'name': 'note_id', 'type': 'string', 'description': 'The unique identifier of the note.', 'r...
class EvernoteManagerDeleteNote(VirtualFunctionTool): name = 'EvernoteManagerDeleteNote' summary = 'Delete a note by its unique identifier.' parameters: List[ArgParameter] = [{'name': 'note_id', 'type': 'string', 'description': 'The unique identifier of the note.', 'required': True}] returns: List[Arg...
class EvernoteManagerCreateNotebook(VirtualFunctionTool): name = 'EvernoteManagerCreateNotebook' summary = 'Create a new notebook with a name.' parameters: List[ArgParameter] = [{'name': 'name', 'type': 'string', 'description': 'The name of the notebook.', 'required': True}] returns: List[ArgReturn] =...
class EvernoteManagerReadNotebook(VirtualFunctionTool): name = 'EvernoteManagerReadNotebook' summary = 'Retrieve the content of a notebook by its unique identifier.' parameters: List[ArgParameter] = [{'name': 'notebook_id', 'type': 'string', 'description': 'The unique identifier of the notebook.', 'requir...
class EvernoteManagerUpdateNotebook(VirtualFunctionTool): name = 'EvernoteManagerUpdateNotebook' summary = 'Update the name of a notebook by its unique identifier.' parameters: List[ArgParameter] = [{'name': 'notebook_id', 'type': 'string', 'description': 'The unique identifier of the notebook.', 'require...
class EvernoteManagerDeleteNotebook(VirtualFunctionTool): name = 'EvernoteManagerDeleteNotebook' summary = 'Delete a notebook by its unique identifier.' parameters: List[ArgParameter] = [{'name': 'notebook_id', 'type': 'string', 'description': 'The unique identifier of the notebook.', 'required': True}] ...
class EvernoteManagerSearchNotes(VirtualFunctionTool): name = 'EvernoteManagerSearchNotes' summary = 'Search for notes by keywords, tags, or notebook ID.' parameters: List[ArgParameter] = [{'name': 'keywords', 'type': 'array', 'description': 'A list of keywords to search for in the note title or content (...
class EvernoteManagerManageNoteSharingLevel(VirtualFunctionTool): name = 'EvernoteManagerManageNoteSharingLevel' summary = 'Alter the note-sharing permissions for a specific user identified by their email address.' parameters: List[ArgParameter] = [{'name': 'note_id', 'type': 'string', 'description': 'The...
class EvernoteManagerSearchNotebooks(VirtualFunctionTool): name = 'EvernoteManagerSearchNotebooks' summary = 'Search for notebooks by keywords or name.' parameters: List[ArgParameter] = [{'name': 'keywords', 'type': 'array', 'description': 'A list of keywords to search for in the notebook name (optional)....
@register_toolkit() class EvernoteManager(FunctionToolkit): name_for_human = 'Evernote Manager' description_for_human = 'Toolkit for managing and organizing notes and documents using Evernote.' name_for_model = 'EvernoteManager' description_for_model = 'A toolkit for managing and organizing notes, doc...
class SlackSendMessage(VirtualFunctionTool): name = 'SlackSendMessage' summary = 'Send a message and optional file to a channel or user.' parameters: List[ArgParameter] = [{'name': 'recipient', 'type': 'string', 'description': "The name of the recipient, channel name starts with '#', e.g., '#general', or ...
class SlackCreateChannel(VirtualFunctionTool): name = 'SlackCreateChannel' summary = 'Create a new channel.' parameters: List[ArgParameter] = [{'name': 'channel_name', 'type': 'string', 'description': "The name of the channel, must start with '#'.", 'required': True}, {'name': 'is_public', 'type': 'boolea...
class SlackJoinChannel(VirtualFunctionTool): name = 'SlackJoinChannel' summary = 'Join an existing channel.' parameters: List[ArgParameter] = [{'name': 'channel_name', 'type': 'string', 'description': "The name of the channel, must start with '#'.", 'required': True}] returns: List[ArgReturn] = [{'nam...
class SlackLeaveChannel(VirtualFunctionTool): name = 'SlackLeaveChannel' summary = 'Leave a channel.' parameters: List[ArgParameter] = [{'name': 'channel_name', 'type': 'string', 'description': "The name of the channel, must start with '#'.", 'required': True}] returns: List[ArgReturn] = [{'name': 'su...
class SlackSearchMessage(VirtualFunctionTool): name = 'SlackSearchMessage' summary = 'Search for messages in a channel or direct messages.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'The search query.', 'required': True}, {'name': 'in', 'type': 'string', 'descrip...
class SlackSearchChannelOrUser(VirtualFunctionTool): name = 'SlackSearchChannelOrUser' summary = 'Search for channels or users by query.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'The search query.', 'required': True}, {'name': 'search_type', 'type': 'string', '...
class SlackUpdateProfileAndStatus(VirtualFunctionTool): name = 'SlackUpdateProfileAndStatus' summary = "Update the user's profile and status." parameters: List[ArgParameter] = [{'name': 'status_text', 'type': 'string', 'description': 'The status text.', 'required': False}, {'name': 'status_emoji', 'type':...
class SlackManageMembership(VirtualFunctionTool): name = 'SlackManageMembership' summary = 'Add or remove users from a channel. This tool is only valid when the user is the owner of the group.' parameters: List[ArgParameter] = [{'name': 'channel_name', 'type': 'string', 'description': "The name of the cha...
class SlackGetUserDetails(VirtualFunctionTool): name = 'SlackGetUserDetails' summary = 'Retrieve the profile and status of a user.' parameters: List[ArgParameter] = [{'name': 'user_name', 'type': 'string', 'description': "The name of the user, must start with '@'.", 'required': True}] returns: List[Ar...
class SlackDownloadFile(VirtualFunctionTool): name = 'SlackDownloadFile' summary = 'Download a file using its unique identifier.' parameters: List[ArgParameter] = [{'name': 'file_id', 'type': 'string', 'description': 'The unique identifier of the file.', 'required': True}, {'name': 'save_path', 'type': 's...
@register_toolkit() class Slack(FunctionToolkit): name_for_human = 'Slack' description_for_human = 'Toolkit for managing Slack interactions.' name_for_model = 'Slack' description_for_model = 'A toolkit for managing Slack interactions, including sending messages, managing channels, searching for messag...
class TwilioSendSms(VirtualFunctionTool): name = 'TwilioSendSms' summary = 'Send an SMS message to one or multiple specified phone numbers.' parameters: List[ArgParameter] = [{'name': 'to_phone_numbers', 'type': 'array', 'description': 'A list of phone numbers in E.164 format to send the SMS message to.',...
class TwilioGetSmsHistory(VirtualFunctionTool): name = 'TwilioGetSmsHistory' summary = 'Retrieve the history of sent SMS messages.' parameters: List[ArgParameter] = [{'name': 'to_phone_number', 'type': 'string', 'description': 'The phone number in E.164 format to retrieve the history for. If not specified...
class TwilioGetReceivedSmsMessages(VirtualFunctionTool): name = 'TwilioGetReceivedSmsMessages' summary = 'Retrieve the history of received SMS messages.' parameters: List[ArgParameter] = [{'name': 'from_phone_number', 'type': 'string', 'description': 'The phone number in E.164 format to retrieve the histo...
class TwilioGetSmsPricing(VirtualFunctionTool): name = 'TwilioGetSmsPricing' summary = 'Retrieve the costs per text for different country codes.' parameters: List[ArgParameter] = [{'name': 'country_code', 'type': 'integer', 'description': 'The country code to retrieve the costs for.', 'required': True}] ...
class TwilioGetPhoneNumberInfo(VirtualFunctionTool): name = 'TwilioGetPhoneNumberInfo' summary = 'Retrieve information about a specific phone number.' parameters: List[ArgParameter] = [{'name': 'phone_number', 'type': 'string', 'description': 'The phone number in E.164 format to retrieve information for.'...
class TwilioGetScheduledActions(VirtualFunctionTool): name = 'TwilioGetScheduledActions' summary = 'Retrieve the list of scheduled actions.' parameters: List[ArgParameter] = [{'name': 'max_results', 'type': 'integer', 'description': 'The maximum number of results to retrieve. Optional.', 'required': False...
class TwilioCancelScheduledAction(VirtualFunctionTool): name = 'TwilioCancelScheduledAction' summary = 'Cancel a scheduled action.' parameters: List[ArgParameter] = [{'name': 'action_id', 'type': 'string', 'description': 'The unique identifier of the scheduled action to cancel.', 'required': True}] re...
@register_toolkit() class Twilio(FunctionToolkit): name_for_human = 'Twilio' description_for_human = 'Toolkit for Twilio services.' name_for_model = 'Twilio' description_for_model = 'A toolkit for Twilio services, enabling users to send SMS messages, retrieve communication history, manage scheduled ac...
class GoogleMapGetCurrentLocation(VirtualFunctionTool): name = 'GoogleMapGetCurrentLocation' summary = 'Get the current location of the user.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'location_address', 'type': 'string', 'description': "The current location of the user...
class GoogleMapSearchLocations(VirtualFunctionTool): name = 'GoogleMapSearchLocations' summary = 'Search for locations using keywords, distance, open status, and rating.' parameters: List[ArgParameter] = [{'name': 'keywords', 'type': 'string', 'description': 'The keywords to search for locations.', 'requi...
class GoogleMapGetLocationDetails(VirtualFunctionTool): name = 'GoogleMapGetLocationDetails' summary = 'Get details of a location.' parameters: List[ArgParameter] = [{'name': 'location_address', 'type': 'string', 'description': "The address of the location, in the format of 'street address, city, zip code...
class GoogleMapGetDirections(VirtualFunctionTool): name = 'GoogleMapGetDirections' summary = 'Get driving, walking, or public transit directions between two or more locations.' parameters: List[ArgParameter] = [{'name': 'start_location_address', 'type': 'string', 'description': "The starting location addr...
class GoogleMapGeocoding(VirtualFunctionTool): name = 'GoogleMapGeocoding' summary = 'Convert a location address to geographic coordinates.' parameters: List[ArgParameter] = [{'name': 'location_address', 'type': 'string', 'description': "The address of the location, in the format of 'street address, city,...
class GoogleMapReverseGeocoding(VirtualFunctionTool): name = 'GoogleMapReverseGeocoding' summary = 'Convert geographic coordinates to a location address.' parameters: List[ArgParameter] = [{'name': 'coordinates', 'type': 'string', 'description': "The geographic coordinates in the format of 'latitude,longi...
class GoogleMapGetLocationReviews(VirtualFunctionTool): name = 'GoogleMapGetLocationReviews' summary = 'Get the contents of reviews of a location.' parameters: List[ArgParameter] = [{'name': 'location_address', 'type': 'string', 'description': "The address of the location, in the format of 'street address...
class GoogleMapSearchAddressBook(VirtualFunctionTool): name = 'GoogleMapSearchAddressBook' summary = 'Search for locations in the address book.' parameters: List[ArgParameter] = [{'name': 'keywords', 'type': 'string', 'description': 'The keywords to search for locations in the address book.', 'required': ...
class GoogleMapAddAddress(VirtualFunctionTool): name = 'GoogleMapAddAddress' summary = 'Add an address to the address book.' parameters: List[ArgParameter] = [{'name': 'name', 'type': 'string', 'description': 'The name of the address.', 'required': True}, {'name': 'address', 'type': 'string', 'description...
@register_toolkit() class GoogleMap(FunctionToolkit): name_for_human = 'Google Map' description_for_human = 'Toolkit for searching locations, getting location details, getting directions, geocoding, and managing the address book.' name_for_model = 'GoogleMap' description_for_model = 'A toolkit that pr...
class IndoorRobotGetCurrentState(VirtualFunctionTool): name = 'IndoorRobotGetCurrentState' summary = 'Retrieve the current state of the robot, including the room it is currently in and the objects it has grabbed.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'current_room',...
class IndoorRobotListRooms(VirtualFunctionTool): name = 'IndoorRobotListRooms' summary = 'List all the rooms in the building that the robot can navigate to.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'rooms', 'type': 'array', 'description': "A list of objects containing ...
class IndoorRobotGoToRoom(VirtualFunctionTool): name = 'IndoorRobotGoToRoom' summary = "Let the robot safely move to a specified room based on the room's unique identifier. If the robot cannot move to the specified room safely, it will return a message indicating the reason why it cannot move to the specified...
class IndoorRobotFindObjects(VirtualFunctionTool): name = 'IndoorRobotFindObjects' summary = 'Let the robot find objects in the current room based on a query. When the robot cannot find any objects that match the query, it will return an empty list.' parameters: List[ArgParameter] = [{'name': 'query', 'ty...
class IndoorRobotLookAroundObject(VirtualFunctionTool): name = 'IndoorRobotLookAroundObject' summary = 'Let the robot look around a specified object and list all objects around the object in the current room.' parameters: List[ArgParameter] = [{'name': 'object_id', 'type': 'string', 'description': 'The un...
class IndoorRobotGetAllowedOperations(VirtualFunctionTool): name = 'IndoorRobotGetAllowedOperations' summary = 'Get allowed operations on a specific target object, optionally using the grabbed objects for interaction. The allowed operations include grabbing, placing, and interacting with the target object. Th...
class IndoorRobotApplyAllowedOperation(VirtualFunctionTool): name = 'IndoorRobotApplyAllowedOperation' summary = 'Apply an allowed operation on a specific target object, optionally using the grabbed objects as tools for interaction. The allowed operations must be retrieved using the GetAllowedOperations tool ...
class IndoorRobotFindPeople(VirtualFunctionTool): name = 'IndoorRobotFindPeople' summary = 'Let the robot find people in the current room based on a query. When the robot cannot find any people that match the query, it will return an empty list.' parameters: List[ArgParameter] = [{'name': 'query', 'type':...
class IndoorRobotHandObjectsToPerson(VirtualFunctionTool): name = 'IndoorRobotHandObjectsToPerson' summary = 'Let the robot hand a subset of the grabbed objects to a person.' parameters: List[ArgParameter] = [{'name': 'object_ids', 'type': 'array', 'description': 'A list of unique identifiers of the objec...
@register_toolkit() class IndoorRobot(FunctionToolkit): name_for_human = 'Indoor Robot' description_for_human = 'Toolkit for controlling an indoor robot to perform indoor tasks.' name_for_model = 'IndoorRobot' description_for_model = 'A toolkit for controlling an indoor robot to perform a range of tas...
class EmergencyDispatchSystemCreateDispatchRequest(VirtualFunctionTool): name = 'EmergencyDispatchSystemCreateDispatchRequest' summary = 'Create an active new emergency dispatch request with available resources.' parameters: List[ArgParameter] = [{'name': 'incident_location', 'type': 'string', 'descriptio...
class EmergencyDispatchSystemRedirectDispatchResources(VirtualFunctionTool): name = 'EmergencyDispatchSystemRedirectDispatchResources' summary = 'Redirect a specific dispatch resources to an already existing incident or a new location. If the location is provided, a new incident will be created and the dispat...
class EmergencyDispatchSystemEstimateDispatchTime(VirtualFunctionTool): name = 'EmergencyDispatchSystemEstimateDispatchTime' summary = 'Estimate the dispatch time for a specific dispatch resource to reach a specified location.' parameters: List[ArgParameter] = [{'name': 'resource_id', 'type': 'string', 'd...
class EmergencyDispatchSystemFindNearbyResources(VirtualFunctionTool): name = 'EmergencyDispatchSystemFindNearbyResources' summary = 'Find nearby dispatch resources based on a specified location and resource type.' parameters: List[ArgParameter] = [{'name': 'location', 'type': 'string', 'description': 'Th...
class EmergencyDispatchSystemGetIncidentData(VirtualFunctionTool): name = 'EmergencyDispatchSystemGetIncidentData' summary = 'Retrieve incident data for a specified incident.' parameters: List[ArgParameter] = [{'name': 'incident_id', 'type': 'string', 'description': 'The unique identifier of the incident ...
class EmergencyDispatchSystemGetResourceData(VirtualFunctionTool): name = 'EmergencyDispatchSystemGetResourceData' summary = 'Retrieve data for a specified dispatch resource.' parameters: List[ArgParameter] = [{'name': 'resource_id', 'type': 'string', 'description': 'The unique identifier of the dispatch ...
class EmergencyDispatchSystemEditIncident(VirtualFunctionTool): name = 'EmergencyDispatchSystemEditIncident' summary = 'Edit the data for a specified incident. This function should be used to assign new resources to an incident unless they have already been notified; it will NOT notify them of the assignment....
class EmergencyDispatchSystemSearchIncidents(VirtualFunctionTool): name = 'EmergencyDispatchSystemSearchIncidents' summary = 'Search for incidents based on a specified location and incident type.' parameters: List[ArgParameter] = [{'name': 'location', 'type': 'string', 'description': 'The location to sear...
@register_toolkit() class EmergencyDispatchSystem(FunctionToolkit): name_for_human = 'Emergency Dispatch System' description_for_human = 'Toolkit for handling emergency dispatch requests from 911 operators.' name_for_model = 'EmergencyDispatchSystem' description_for_model = 'The EmergencyDispatchSyste...
class EthereumManagerDeploySmartContract(VirtualFunctionTool): name = 'EthereumManagerDeploySmartContract' summary = 'Deploy a new smart contract on the Ethereum blockchain.' parameters: List[ArgParameter] = [{'name': 'contract_bytecode', 'type': 'string', 'description': 'The bytecode for the smart contra...
class EthereumManagerCallSmartContractFunction(VirtualFunctionTool): name = 'EthereumManagerCallSmartContractFunction' summary = 'Interact with a deployed smart contract by calling one of its functions.' parameters: List[ArgParameter] = [{'name': 'contract_address', 'type': 'string', 'description': 'The E...
class EthereumManagerTransferEther(VirtualFunctionTool): name = 'EthereumManagerTransferEther' summary = 'Transfer Ether between Ethereum accounts.' parameters: List[ArgParameter] = [{'name': 'from_address', 'type': 'string', 'description': 'The Ethereum address of the sender.', 'required': True}, {'name'...
class EthereumManagerCreateEthereumAccount(VirtualFunctionTool): name = 'EthereumManagerCreateEthereumAccount' summary = 'Create a new Ethereum account with a private key.' parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'account_address', 'type': 'string', 'description': 'The...
class EthereumManagerImportEthereumAccount(VirtualFunctionTool): name = 'EthereumManagerImportEthereumAccount' summary = 'Import an existing Ethereum account using its private key.' parameters: List[ArgParameter] = [{'name': 'private_key', 'type': 'string', 'description': 'The private key of the existing ...
class EthereumManagerEstimateGasCost(VirtualFunctionTool): name = 'EthereumManagerEstimateGasCost' summary = 'Estimate the gas cost for a smart contract function call.' parameters: List[ArgParameter] = [{'name': 'contract_address', 'type': 'string', 'description': 'The Ethereum address of the deployed sma...
class EthereumManagerCompileSolidity(VirtualFunctionTool): name = 'EthereumManagerCompileSolidity' summary = 'Compile Solidity code into bytecode.' parameters: List[ArgParameter] = [{'name': 'contract_code', 'type': 'string', 'description': 'The Solidity code for the smart contract.', 'required': True}] ...
class EthereumManagerSignMessage(VirtualFunctionTool): name = 'EthereumManagerSignMessage' summary = "Sign a message using an Ethereum account's private key." parameters: List[ArgParameter] = [{'name': 'message', 'type': 'string', 'description': 'The message to be signed.', 'required': True}, {'name': 'pr...
class EthereumManagerVerifyMessage(VirtualFunctionTool): name = 'EthereumManagerVerifyMessage' summary = "Verify a signed message using the Ethereum account's address." parameters: List[ArgParameter] = [{'name': 'message', 'type': 'string', 'description': 'The message to be verified.', 'required': True}, ...
class EthereumManagerQueryEthereumData(VirtualFunctionTool): name = 'EthereumManagerQueryEthereumData' summary = 'Query Ethereum blockchain data, including account and contract addresses, account balances, and transaction information.' parameters: List[ArgParameter] = [{'name': 'query_type', 'type': 'stri...
@register_toolkit() class EthereumManager(FunctionToolkit): name_for_human = 'Ethereum Manager' description_for_human = 'Toolkit for interacting with the Ethereum blockchain.' name_for_model = 'EthereumManager' description_for_model = 'A toolkit for interacting with the Ethereum blockchain, allowing u...
class BinanceGetAccountBalances(VirtualFunctionTool): name = 'BinanceGetAccountBalances' summary = "Retrieve the user's account balances for various cryptocurrencies." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'balances', 'type': 'array', 'description': "An array of obje...
class BinanceRetrieveAccounts(VirtualFunctionTool): name = 'BinanceRetrieveAccounts' summary = "Retrieves user's saved bank accounts for fiat deposits." parameters: List[ArgParameter] = [] returns: List[ArgReturn] = [{'name': 'accounts', 'type': 'array', 'description': "An array of object containing '...
class BinanceDeposit(VirtualFunctionTool): name = 'BinanceDeposit' summary = "Deposit a specified amount of fiat money to the user's saved account. The account id must be retrieved using the RetrieveAccounts tool." parameters: List[ArgParameter] = [{'name': 'currency', 'type': 'string', 'description': "Th...
class BinanceWithdraw(VirtualFunctionTool): name = 'BinanceWithdraw' summary = "Withdraw a specified amount of cryptocurrency or fiat money to a specified destination address or bank account from user's account. The bank account id must be retrieved using the RetrieveAccounts tool." parameters: List[ArgPa...
class BinancePlaceOrder(VirtualFunctionTool): name = 'BinancePlaceOrder' summary = 'Place a buy or sell order for a specified cryptocurrency pair.' parameters: List[ArgParameter] = [{'name': 'pair', 'type': 'string', 'description': "The cryptocurrency pair to trade, for example, 'BTCUSD', 'USDBTC', 'ETHUS...
class BinanceModifyOrder(VirtualFunctionTool): name = 'BinanceModifyOrder' summary = 'Modify an existing order by changing its price or quantity.' parameters: List[ArgParameter] = [{'name': 'order_id', 'type': 'string', 'description': 'The unique identifier of the order to modify.', 'required': True}, {'n...
class BinanceCancelOrder(VirtualFunctionTool): name = 'BinanceCancelOrder' summary = 'Cancel an existing order.' parameters: List[ArgParameter] = [{'name': 'order_id', 'type': 'string', 'description': 'The unique identifier of the order to cancel.', 'required': True}] returns: List[ArgReturn] = [{'nam...
class BinanceGetRealTimePrice(VirtualFunctionTool): name = 'BinanceGetRealTimePrice' summary = 'Retrieve real-time price information for a specified cryptocurrency pair.' parameters: List[ArgParameter] = [{'name': 'pair', 'type': 'string', 'description': "The cryptocurrency pair to retrieve real-time pric...
class BinanceGetOrderHistory(VirtualFunctionTool): name = 'BinanceGetOrderHistory' summary = "Retrieve the user's order history for a specified date range and cryptocurrency pair." parameters: List[ArgParameter] = [{'name': 'date_range', 'type': 'array', 'description': "An array containing the start and e...
class BinanceGetTradeHistory(VirtualFunctionTool): name = 'BinanceGetTradeHistory' summary = "Retrieve the user's trade history for a specified date range and cryptocurrency pair." parameters: List[ArgParameter] = [{'name': 'date_range', 'type': 'array', 'description': "An array containing the start and e...
@register_toolkit() class Binance(FunctionToolkit): name_for_human = 'Binance' description_for_human = 'Toolkit for managing cryptocurrency trading activities on the Binance platform.' name_for_model = 'Binance' description_for_model = 'A toolkit for managing cryptocurrency trading activities on the B...
class ShopifySearchProducts(VirtualFunctionTool): name = 'ShopifySearchProducts' summary = 'Search for products by keywords or filters. If no products match the search query, return an empty list.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'Keywords or filters to...
class ShopifyGetProductDetails(VirtualFunctionTool): name = 'ShopifyGetProductDetails' summary = 'Retrieve product details by the product ID.' parameters: List[ArgParameter] = [{'name': 'product_id', 'type': 'string', 'description': 'Unique identifier of the product.', 'required': True}] returns: List...
class ShopifyCreateProduct(VirtualFunctionTool): name = 'ShopifyCreateProduct' summary = 'Create a new product with the specified information.' parameters: List[ArgParameter] = [{'name': 'name', 'type': 'string', 'description': 'Name of the product.', 'required': True}, {'name': 'description', 'type': 'st...
class ShopifyUpdateProduct(VirtualFunctionTool): name = 'ShopifyUpdateProduct' summary = 'Update product information by the product ID.' parameters: List[ArgParameter] = [{'name': 'product_id', 'type': 'string', 'description': 'Unique identifier of the product.', 'required': True}, {'name': 'name', 'type'...
class ShopifyDeleteProduct(VirtualFunctionTool): name = 'ShopifyDeleteProduct' summary = 'Delete a product by the product ID.' parameters: List[ArgParameter] = [{'name': 'product_id', 'type': 'string', 'description': 'Unique identifier of the product.', 'required': True}] returns: List[ArgReturn] = [{...
class ShopifySearchOrders(VirtualFunctionTool): name = 'ShopifySearchOrders' summary = 'Search for orders by keywords or filters. If no orders match the search query, return an empty list.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'Keywords or filters to search ...
class ShopifyGetOrderDetails(VirtualFunctionTool): name = 'ShopifyGetOrderDetails' summary = 'Retrieve order details by the order ID.' parameters: List[ArgParameter] = [{'name': 'order_id', 'type': 'string', 'description': 'Unique identifier of the order.', 'required': True}] returns: List[ArgReturn] ...
class ShopifyDraftOrder(VirtualFunctionTool): name = 'ShopifyDraftOrder' summary = "Draft a new order for a customer to review before payment. The drafted order would be in the 'draft' status." parameters: List[ArgParameter] = [{'name': 'customer_username', 'type': 'string', 'description': 'Username of th...
class ShopifyManageOrder(VirtualFunctionTool): name = 'ShopifyManageOrder' summary = "Manage an existing order by the order ID. The action can be 'update', 'fulfill', 'cancel', or 'refund'. For 'update', the order details can be changed, can only be performed on orders in 'draft', 'open', or 'pending' status....
class ShopifySearchCustomers(VirtualFunctionTool): name = 'ShopifySearchCustomers' summary = 'Search for customers by keywords or filters. If no customers match the search query, return an empty list.' parameters: List[ArgParameter] = [{'name': 'query', 'type': 'string', 'description': 'Keywords or filter...
class ShopifyGetStoreAnalytics(VirtualFunctionTool): name = 'ShopifyGetStoreAnalytics' summary = 'Retrieve store analytics data, such as revenue, orders, and traffic.' parameters: List[ArgParameter] = [{'name': 'start_date', 'type': 'string', 'description': 'Start date of the analytics data in YYYY-MM-DD ...
@register_toolkit() class Shopify(FunctionToolkit): name_for_human = 'Shopify' description_for_human = 'Toolkit for managing Shopify stores.' name_for_model = 'Shopify' description_for_model = 'A comprehensive toolkit for managing Shopify stores, including product, order, and customer management, as w...
class FedExShipManagerGetQuote(VirtualFunctionTool): name = 'FedExShipManagerGetQuote' summary = 'Get a quote for shipping a package.' parameters: List[ArgParameter] = [{'name': 'package_details', 'type': 'object', 'description': "The package details, must include the keys 'description' (string), 'weight'...
class FedExShipManagerCreateShipmentLabel(VirtualFunctionTool): name = 'FedExShipManagerCreateShipmentLabel' summary = 'Creates a shipping label for a package.' parameters: List[ArgParameter] = [{'name': 'quote_id', 'type': 'string', 'description': 'The unique identifier of the shipping quote.', 'required...
class FedExShipManagerGetShipmentDetails(VirtualFunctionTool): name = 'FedExShipManagerGetShipmentDetails' summary = 'Displays the current status, estimated delivery date, and other details of a shipment.' parameters: List[ArgParameter] = [{'name': 'shipment_id', 'type': 'string', 'description': 'The uniq...