retell_delete_llm
Remove an LLM configuration from the Retell AI voice and chat agent platform to manage conversation flows and agent settings.
Instructions
Delete a Retell LLM configuration.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| llm_id | Yes | The LLM configuration ID to delete |
Implementation Reference
- src/index.ts:1211-1212 (handler)The execution handler for the retell_delete_llm tool within the executeTool function's switch statement. It constructs a DELETE request to the Retell API endpoint `/delete-retell-llm/{llm_id}` using the retellRequest helper.case "retell_delete_llm": return retellRequest(`/delete-retell-llm/${args.llm_id}`, "DELETE");
- src/index.ts:788-800 (registration)Registration of the retell_delete_llm tool in the global tools array used for listing available tools via ListToolsRequestHandler.{ name: "retell_delete_llm", description: "Delete a Retell LLM configuration.", inputSchema: { type: "object", properties: { llm_id: { type: "string", description: "The LLM configuration ID to delete" } }, required: ["llm_id"] }
- src/index.ts:791-799 (schema)Input schema definition for the retell_delete_llm tool, specifying the required 'llm_id' parameter.inputSchema: { type: "object", properties: { llm_id: { type: "string", description: "The LLM configuration ID to delete" } }, required: ["llm_id"]