Developer tools to debug and build realtime voice agents. Supports multiple models.
This UI provides a debug console for real-time AI voice interactions. It works with multiple realtime models (View supported models). Features include:
Inspired by openai-realtime-console and openai-realtime-agents.
Get your API keys:
Set up environment:
cp .env.example .env
# Add your API keys to .env:
# OPENAI_API_KEY="<your-openai-key>"
# OUTSPEED_API_KEY="<your-outspeed-key>"
Install and run:
npm install
npm run dev
Visit http://localhost:3000 to access the console.
To modify agent prompt and tools, modify agent-config.js
.
To modify the model parameters like (voice, version, etc.), edit model-config.js
There are two voice agent examples already present in agent-config.js
:
You can modify the export in the file to activate an agent:
// agent-config.js
export { dental_agent as agent }
// for message_agent
export { message_agent as agent }
Play around with the prompts, or add your own voice agent to give it a spin.
MIT