retell_create_llm
Define an LLM configuration for Retell agents: set the model, system prompt, begin message, and callable tools. Attach it to enable tailored AI behavior.
Instructions
Create a new Retell LLM configuration to attach to agents. Define system prompt, model, begin message, and tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | The underlying LLM model (e.g. "gpt-4o", "gpt-4o-mini", "claude-3-5-sonnet", "claude-3-haiku"). | |
| begin_message | No | First message the agent says when a conversation starts. Pass empty string to clear. | |
| general_tools | No | Tool/function definitions the LLM can call during conversation. | |
| general_prompt | No | System-level prompt defining the agent personality and instructions. | |
| knowledge_base_ids | No | Knowledge base IDs to attach for RAG-based responses. |