Voice Cloning is out in beta with Elevenlabs integration!
cURL
curl --request POST \ --url https://pria.praxislxp.com/api/ai/rtTools/exec \ --header 'Content-Type: application/json' \ --header 'x-access-token: <api-key>' \ --data ' { "toolName": "search_rag", "arguments": {}, "callId": "<string>", "sessionId": "<string>" } '
{ "success": true, "callId": "<string>", "result": {}, "error": "<string>" }
Executes a tool/function during a realtime AI session. Used for RAG search, web search, and other AI tool capabilities.
JWT token passed in x-access-token header
Name of the tool to execute
"search_rag"
Tool-specific arguments
Unique call identifier for tracking
Realtime session ID
Tool executed successfully
Call ID for correlation
Tool execution result
Error message if execution failed
Was this page helpful?