PM
12/27/2024, 2:05 PMVapi
12/27/2024, 2:05 PMPM
12/27/2024, 2:05 PMPM
12/27/2024, 2:05 PMVapi
12/27/2024, 2:06 PMjson
{
"parameter1": "value1",
"parameter2": "value2",
"parameter3": "value3"
}
In the context of VAPI, if you're using tools within your voice application, you would pass parameters according to the specific tool's API documentation. Each tool might have its own set of required and optional parameters.
If you're referring to using the multi_tool_use.parallel function to send parameters to multiple tools in your endpoints, you would structure your request like this:
json
{
"tool_uses": [
{
"recipient_name": "functions.tool1",
"parameters": {
"param1": "value1",
"param2": "value2"
}
},
{
"recipient_name": "functions.tool2",
"parameters": {
"paramA": "valueA"
}
}
]
}
In this example, tool1 and tool2 are placeholders for the actual tool names you would use, and param1, param2, paramA, etc., represent the parameters you're passing to each tool.
If you need more specific guidance on how to send parameters using tools in your endpoints, please provide more details about the tools you're using or the endpoint you're trying to configure.PM
12/28/2024, 2:38 AMVapi
12/28/2024, 2:38 AMPM
12/28/2024, 2:39 AMPM
12/28/2024, 2:40 AMPM
12/28/2024, 3:52 AMPM
12/28/2024, 3:52 AM