Set-up Custom Chatbot Tools
WonderChat Tools allows you to create custom Tools that enable your AI chatbot to interact with external APIs, making it more dynamic and versatile.
Last updated
Was this helpful?
WonderChat Tools allows you to create custom Tools that enable your AI chatbot to interact with external APIs, making it more dynamic and versatile.
Last updated
Was this helpful?
The main benefit of adding a custom tool to your chatbot is to provide easier access to information from various apps. Instead of developers creating complex interfaces, they can describe an API to Wonderchat, which then acts as a bridge between users and the service.
To create a Wonderchat tool, select the 'Tool' option from the dashboard, or click on Edit Chatbot
Within the edit chatbot menu, click on the “Tools” tab
You will be redirected to the tools page, where you can click on "add custom tools"
Afterwards, you can create a custom tool from the menu
Once you click on “Create tool”, you will be redirected to the new action menu.
You will then be asked to fill in relevant information to perform the API call.
Tool Name:
Provide a unique name for the action. This name will be used to identify the action within your chatbot's configurations.
Example: Get Weather API
Tool Description:
Write a brief description of what the action does. This description helps you remember the purpose of the action when managing multiple actions.
Example: A simple API for getting the weather information of a location.
Tool API URL:
Enter the URL of the API endpoint that this action will interact with. Ensure the URL is accurate and points to the correct resource.
Example: https://myapi.com/getweather
HTTP Method:
Select the HTTP method that the action should use when making requests to the API. The available options typically include GET
, POST
, PUT
, DELETE
, etc.
Example: GET
Authorization Method:
Choose the authorization method required to access the API. Options include "No Authorization Required", "API Key", "Bearer Token", etc.
Example: No Authorization Required
If the API requires authorization, additional fields will appear for you to enter the necessary credentials, such as API keys or tokens.
After setting up the basic information, you'll need to define the input parameters for the action.
Parameter Name:
Define the name of the parameter that the user must provide. For example, if you’re retrieving weather data, a parameter could be location
.
Parameter Type:
Specify the type of input expected, such as string
, integer
, float
, etc.
Required:
Indicate whether this parameter is mandatory for the API request to be successful.
Default Value (Optional):
You can specify a default value for this parameter, which will be used if the user does not provide one.
In this step, you can customize how the Tool's output will be displayed to the user.
Inform user if action is called:
Toggle this button on and off if you want a user to be informed when a Wonderchat Action is called.
Action called Display Message:
Choose a name for how this action’s result should be labeled in the user interface.
Finally, you can debug and verify that the action works correctly:
“Run” and Test Tool:
“Run” your inputs to ensure that the Tool interacts with the API as expected and returns the correct data.
Review Response:
Check the API response for any errors or issues, and adjust the action settings if necessary.
Create Tool:
Once you’ve verified everything is working correctly, save the action. It will then be available for use within your chatbot workflows.
Once your tool is created, it can be integrated into your chatbot's workflow. You can set triggers for this action based on specific user inputs or events within the chat.
Triggering the Action: You can configure your chatbot to trigger the action based on user questions or commands.
Handling the Response: Customize the chatbot’s response to the user based on the data returned by the action.