insights.tools
Create Insight Tool Configuration
Create a new insight tool.
post/api/v1/insights/tool-configurations
Request body
Example request
{
"name": "summary-tool",
"description": "This tool uses GPT4.1 to generate a summary of the call",
"version": 1,
"tool_arguments": {
"prompt": "Provide a concise, accurate summary of the conversation's key points, focusing on the user's goal and how the agent responded"
},
"insight_tool_definition_id": 1
}Response
Successful Response
Example response
{
"name": "summary-tool",
"description": "This tool uses GPT4.1 to generate a summary of the call",
"version": 1,
"tool_arguments": {
"prompt": "Provide a concise, accurate summary of the conversation's key points, focusing on the user's goal and how the agent responded"
},
"insight_tool_definition_id": 1,
"id": 1,
"insight_tool_definition": {
"id": 1,
"name": "llm_tool",
"description": "An LLM tool evaluates a transcript with a given prompt",
"tool_parameters": {
"prompt": "string"
},
"tool_result_set": {
"summary": "string"
}
},
"created_at": "2026-07-31T00:00:00Z",
"updated_at": "2026-08-01T00:00:00Z",
"last_updated_by": "user@email.com"
}