Documentation Index
Fetch the complete documentation index at: https://docs.voxworks.ai/llms.txt
Use this file to discover all available pages before exploring further.
What is a Tool Step?
A Tool Step calls an external service and uses the result to guide the conversation:- Execute tool — Call the external service with configured inputs
- Receive result — Get success/failure and any output data
- Map outputs — Store results in variables for later use
- Evaluate conditions — Navigate based on tool success or failure
Tool Step Structure
| Property | Description |
|---|---|
tool_id | Which tool to execute |
script | ”thinking” message while tool runs |
conditions | Navigation based on tool result |
Input Mapping
Input mapping passes values to the tool. Values can be:- Static text — Fixed values
- Variables — Contact and live variables from the conversation (type
/to see available variables)
Tool Results
Tools return results that can be used in conditions and subsequent steps. The assistant has access to tool outputs and can incorporate them naturally into the conversation:Conditions
Tool steps use boolean conditions based on success or failure:Interrupts
Tool steps cannot be interrupted. While a tool is executing, this ensures tool operations complete reliably without being disrupted mid-execution. Use the Script to provide a “thinking” message like “Let me check that for you…” which will happen whilst the tool executes, so it is OK to keep it brief.Best Practices
- Handle failures gracefully — Always have a fallback condition
- Validate inputs first — Use function steps to validate data before tool calls
- Inform the user — Use the script property to set expectations (“Let me check that for you…”, “Let me see…” or “Ok…”)
- Use tool outputs — The assistant can reference tool results in responses
- Test integrations — Verify tools work with your specific configuration
Next Steps
- Function Steps — Add validation logic before tool calls
- Variables — Learn about global variables
- Steps Overview — See all step types

