Agents
Agents are the core building block of Callem Studio. An agent is an AI-powered voice assistant configured with a system prompt, a voice, a language model, and optional integrations. The agent configuration is split across multiple tabs, each controlling a different aspect of its behavior.Creating an Agent
- Navigate to Build > Agents
- Click New Agent (for prompt-based) or New Workflow Agent (for flow-based)
- Name your agent and start configuring
Organizing with Folders
As your agent library grows, you can group agents into folders for easier navigation.- Create a folder: click the + button in the agent sidebar and select Folder
- Move an agent: drag and drop an agent onto a folder, or use the folder icon on hover to pick a destination
- Rename / delete: right-click (or hover) a folder header to rename or delete it
Agent Tabs
Each agent has the following configuration tabs:Model Tab
The Model tab controls the agent’s “brain” — what it says, how it reasons, and what data it has access to.Welcome Message
The first thing the agent says when a call begins. Leave empty for the agent to wait for the caller to speak first.System Prompt
The most critical configuration. It defines the agent’s identity, instructions, tone, and boundaries.Example System Prompt
LLM Configuration
For voice agents, a temperature between 0.3 and 0.5 usually gives the best balance between natural-sounding and reliable responses. Higher values can cause the agent to go off-script.
Knowledge Base
Link one or more knowledge bases to give the agent access to domain-specific content. When a caller asks a question, the agent retrieves the most relevant content from the linked knowledge bases and uses it to answer. Retrieval Settings (available when at least one knowledge base is linked):Tools
Link tools (custom functions) that the agent can invoke during a call. When the LLM determines that a tool should be called based on the conversation context, it passes the extracted parameters to the tool’s endpoint and uses the result to continue the conversation.Voice Tab
The Voice tab controls how the agent sounds and how it processes caller speech.Text-to-Speech (TTS)
Choose the voice the agent uses to speak. The available voices are loaded dynamically from configured providers. You can filter voices by language, gender, and provider. Some voices offer additional settings (like model selection) that appear automatically when relevant.Speech-to-Text (STT)
Configure how caller speech is transcribed:End-of-turn detection
The Voice Gateway detects automatically when the caller has finished speaking. There is no manual tuning: silence thresholds and voice activity detection are handled by the gateway’s turn-taking engine.Earlier versions exposed Silence Confirmation Delay and Semantic VAD controls. These settings are now managed by the Voice Gateway and no longer appear in the Studio UI. Existing agents keep their stored values for backward compatibility.
Turn context
Free-text context that helps the gateway decide when the caller has finished their turn. Use it to describe expected answers, pauses, spelling, or number sequences. For example, if callers spell out a reference number character by character, mention it here so the agent waits for the full reference instead of responding after the first pause. Open it from the Turn context card in the Voice tab.Allow interruptions
Controls whether the caller can interrupt the agent while it’s speaking.Inactivity Timeout (Reminder Message)
Time in seconds before the agent sends a reminder message if the caller remains silent.Voice Speed
Adjust the speaking speed of the agent’s voice.1.0 is normal speed. Available when the TTS provider supports speed adjustment (displayed dynamically based on provider settings).
Background Sound
Add ambient background audio to make calls feel more natural (e.g. office ambiance, call center sounds).Call Analysis Tab
Call Analysis is a post-conversation processing feature that uses an LLM to extract structured data from conversation transcripts after the conversation ends. It runs for both voice calls and chat sessions. This is useful for automatically categorizing conversations, extracting key information, and feeding data into your analytics dashboards.How It Works
- After a call ends, the full transcript is sent to an LLM along with your analysis prompt
- The LLM extracts the requested fields based on the prompt and field definitions
- The extracted data is stored as
callAnalysison the call record - This data can be used in analytics charts, alert rules, and API responses
Analysis Fields
Define the fields you want to extract from each call. Each field has a type:Analysis Prompt
A custom prompt sent to the LLM along with the call transcript. Use it to give the LLM context about your business and instructions on how to analyze each field.Minimum Duration
Calls shorter than this duration (in seconds) will not be analyzed. This avoids wasting LLM calls on hang-ups, wrong numbers, or very short interactions.Advanced Tab
LLM Safety Features
Privacy
Voice Mail Detection
Automatically detects when a call reaches a voicemail or IVR system and hangs up to avoid wasting resources.Observability
Connect external observability platforms to trace and debug your agent’s LLM interactions:
This sends all LLM calls (prompts, responses, tool calls) to your observability platform for detailed tracing and debugging.
Best Practices
Write specific, actionable prompts
Write specific, actionable prompts
Vague prompts like “be helpful” lead to inconsistent behavior. Describe exact scenarios: “When a caller asks about pricing, quote from the attached knowledge base. Never invent prices.”
Lower the temperature for production agents
Lower the temperature for production agents
A temperature of 0.3-0.5 gives reliable, consistent responses. Only use higher values for creative or exploratory use cases.
Use call analysis to measure quality
Use call analysis to measure quality
Define analysis fields like
sentiment, issueResolved, and callbackRequested to automatically track call quality at scale.Test with real conversations
Test with real conversations
After configuring your agent, call the assigned phone number yourself. Listen for unnatural pauses, incorrect responses, or missed instructions. Use the built-in chat or webcall features for faster iteration.
Start simple, iterate
Start simple, iterate
Begin with a minimal prompt and a single knowledge base. Add tools, analysis fields, and advanced settings once the basic flow works well.