
Tools have powerful capabilities that take your Voice Bot beyond simple conversation. With them, your bot can transfer calls, fetch live data from external systems, capture structured details, schedule appointments, and more.
We provide a range of predefined tools out of the box, from call transfers to booking integrations. For even more flexibility, the HTTP Request tool lets you connect Voice AI directly to your own external systems. Our team can guide you through configuration if you need support.
We’re continually expanding the library of predefined tools. If there’s a specific action you’d like to see added, let us know, your feedback helps shape the roadmap.
⚒️ Tools Overview
Each tool has a label, prompt, and optional parameters or configuration. Prompts should be clear and short - just enough to tell the AI when and how to use the tool.
All tools have the following required properties.
LabelPrimarily an UI element and currently not utilised or read by the LLM.
PromptHere you can explain to the LLM what the tool is, what it does and/or when to use it.
ParametersThe pieces of data that the tool requires in order to execute. This is not exposed on some tools.Typethe parameter type. Options arestring,number,boolean,null/empty, object,arrayNamea ‘camelCase’ or ‘snake_case’ variable name. This will then be used as a reference for templating or is prescribed by custom tools.Description PromptA clear explanation of the parameter's purpose and expected format. You can include examples of the expected formats.
ConfigurationBespoke to each individual tool.
Templating
Some properties will allow templating to insert configuration options, variables or call details into strings. For example, if you get the LLM to gather a parameter called songTitle you can add it into a URL for the HTTP_REQUEST tool using an template that might look like this: http://spotify.com/{{songTitle}}/artist.
🛠️ Talkative Voice Bot Tools
These are all the tool currently available to use with your Voice Bot, we’re continually expanding the library of predefined tools. If there’s a specific action you’d like to see added, let us know, your feedback helps shape the roadmap.
1. Transfer tool
Use this tool to transfer the caller to another agent or department.
Prompt: Use this tool to transfer the user to another agent or department. Here you can specify more info on how to decide which queue to transfer to. For example, you could say "Only transfer to Support if the user has provided their company ID and their full name".
Each destination requires:
- Type: Choose from Dial, SIP Refer, Mitel Refer
- Description Prompt: A label like Billing Department
- Destination: e.164 phone number (e.g., +441234567890), SIP URI, or extension.
You can also specify a voice assist config to be used here as well.
Transfer Types:
- Dial - Talkative will transfer the call to a PSTN number. Destination must be filled in as E.164 format. Note, this should only be used for standalone deployments, where Talkative is able to transfer to PSTN.
- SIP Refer - a SIP extension. Note, the system will need to have your SIP-based telephony already connected.


- Mitel Refer - Transfers the call using the Mitel Refer method. This is specifically designed for environments integrated with Mitel phone systems. Mitel Refer requires your Talkative deployment to be configured with Mitel telephony integration. Note, a corresponding set up is required within the Mitel "transfer to" app, so putting in a SIP extension in this field will not necessarily mean the call is transferred to that destination. Destination = Extension that will be passed to the transfer API. This data can then be used in a workflow to deliver the call to that destination
2. Knowledge Base Tool
Use this tool to fetch information from a knowledge base (KB).
Configuration:
- Knowledge Base: Select from the dropdown - it should have access to all of your KBs.
- Prompt: Here you should define why and when the LLM should use the knowledge base. You can have multiple knowledge base tools if you have separate KBs.
- Context Size Limit: Typically set to 3500. Set the maximum character limit (1000-8000) for contextual information provided to the AI for each search term. Larger contexts may improve AI understanding but can slow down response times.
Parameters:
- Name: This is the internal name used to refer to this input. searchText is a label the system uses—it’s not visible to users. Think of it as the “variable name” for the text the AI will search with.
- Type: This tells the system what kind of data to expect. In this case, it’s string, which just means a line of text.
- Description Prompt: This is where you describe what the AI should provide here. In this example:
“Text to search the knowledge base for embeddings.”
That means the AI will pass in relevant phrases or sentences from the conversation to find matching results in your KB.


3. Hang Up Tool
This tool is used to tell the AI when to hang up the call without transfer.
Label: This is the display name for the tool so you can identify it easily in the tools list. In this case, it’s set as: ‘Hang Up Tool’
Prompt: This tells the AI under what condition to use the tool. In this example:"Use this tool to hang up the call if the user speaks inappropriately or abusively."

The AI will end the call automatically when it detects abuse.
4. HTTP Request Tool
This tool allows the AI to fetch live data from external APIs - for example, to check MOT status, retrieve booking availability, or validate information from another system.
Label: This is the display name used to help identify the tool. In this case: ‘HTTP Request Tool’
Prompt: A brief instruction telling the AI when to use the tool.
Example: Use this tool to retrieve external information from a third-party API.
Configuration:
- Method: Choose the HTTP method the API expects. Common options include:
- GET – for retrieving data
- POST – for sending data
- PUT / DELETE – for updates or deletions (less common in voice AI)
- URL: The full URL of the API endpoint, including https://. You can use variables like {{parameterName}} to insert dynamic values.


Example: https://api.example.com/vehicle/{{registrationNumber}}
- Headers: Add headers like Authorization, Content-Type, or any other required by the API.
- Parameters (optional): Use this if the API requires extra values in the URL, body, or query string.
- Timeout (seconds): Optional - sets how long the system should wait before giving up on the request.
5. Placeholder Tool
This tool is used to capture and return structured values from user input - ideal for things like names, email addresses, or selected options.
Label: This is the display name for the tool that helps identify it in your list of tools. In this case: ‘Placeholder Tool’
Prompt: This tells the AI when to use the tool. In this example you want to retrieve caller's name.
Example: Use this tool to return structured values from user input.
Parameters:
- Type: string
This defines the kind of input the AI should collect. A string is used for short text inputs like names or short answers.
- Name: fullName
This is the internal identifier for the value being captured. It must be in lowercase letters with no spaces.
- Description Prompt:
The caller's name, spoken clearly as part of the introduction.
This tells the AI what kind of value it should provide for this parameter.

- Allowed Values (optional):
Leave this empty when capturing free-form input like a name. You can use this field to restrict inputs to fixed options if needed (e.g., service type choices).
Configuration – Response
This determines what the AI should return once the value has been captured. You can use templating to format the response.
In the example the response's outputs will be customer's full name in a structured format that other systems can use.
SMS Confirmation:
Optional—used to send an SMS to the user after booking.
- Phone Number
A fallback phone number for confirmation if no number is gathered or known.
- SMS Template
Defines the structure of the confirmation message.
Example:
{{meetTitle}} scheduled for {{meetDateTime}}. Join at {{meetUrl}}
- SMS Date Time Format
Adjust how the date/time appears in the SMS. The default option works in most cases.