Build AI agents for real conversations
Design, deploy, and improve voice and chat agents with the Syllable Console, SDK, and API.
from syllable_sdk import SyllableSDK
sdk = SyllableSDK(api_key_header="your_api_key")
agents = sdk.agents.list()
print(agents)
import { SyllableSDK } from "syllable-sdk";
const sdk = new SyllableSDK({
apiKeyHeader: process.env.SYLLABLE_API_KEY,
});
const agents = await sdk.agents.list();
curl https://api.syllable.cloud/api/v1/agents/ \
--header "Authorization: Bearer $SYLLABLE_API_KEY"
Choose how you build
Use the visual Console, automate with code, or move between both as your workflow grows.
See every conversation and tool call
Test an agent, inspect its decisions, and debug tool activity without leaving the Console.
From idea to production
Follow the lifecycle or jump directly to the task you need.
- 1
- 2
- 3
- 4
Core building blocks
Understand the pieces that make up every Syllable agent.
Agents
Bring behavior, voice, messages, and runtime settings together.
Prompts
Define agent behavior and give the model access to tools.
Tools
Call APIs, retrieve data, and take action during a conversation.
Channels
Meet customers over phone, chat, SIP, and connected surfaces.
Data sources
Give agents grounded access to business information.
Insights
Turn conversation data into measurable signals and improvements.
Start with a working agent
Learn the platform through a complete, outcome-oriented tutorial.

