Introduction to AI Voice Agents in LLM Orchestration
In the rapidly evolving landscape of artificial intelligence, AI Voice Agents have emerged as pivotal components in orchestrating large language models (LLM). These agents act as intermediaries, facilitating seamless interaction between users and complex LLM systems. But what exactly is an AI
Voice Agent
?What is an AI Voice Agent
?
An AI
Voice Agent
is a software entity designed to interact with users through voice commands. It processes spoken language, interprets the intent, and responds appropriately, often using advanced machine learning models. These agents are crucial in various applications, from customer service to smart home devices.Why are they important for the LLM orchestration industry?
In the context of LLM orchestration, AI Voice Agents enable efficient management and deployment of language models by providing a natural interface for interaction. They simplify complex workflows, making it easier to leverage the power of LLMs in real-world applications.
Core Components of a Voice Agent
To build an effective AI
Voice Agent
, several core components are essential. For a comprehensive understanding, refer to theAI voice Agent core components overview
:- Speech-to-Text (STT): Converts spoken language into text.
- Large Language Model (LLM): Processes and understands the text.
- Text-to-Speech (TTS): Converts text responses back into speech.
What You'll Build in This Tutorial
In this tutorial, we will guide you through building a fully functional AI Voice Agent using the VideoSDK framework. You will learn to set up a development environment, create a custom agent, and test it in a
AI Agent playground
environment.Architecture and Core Concepts
High-Level Architecture Overview
The architecture of an AI Voice Agent involves several interconnected components that work together to process user inputs and generate responses. The typical flow starts with capturing user speech, converting it to text, processing it through an LLM, and finally converting the response back to speech.

Understanding Key Concepts in the VideoSDK Framework
The VideoSDK framework provides a robust foundation for building AI Voice Agents. Key components include:
- Agent: The core class representing your bot, handling interactions and logic.
- CascadingPipeline: Manages the flow of audio processing through various stages like STT, LLM, and TTS. For more details, see the
Cascading pipeline in AI voice Agents
. - VAD & TurnDetector: These components help the agent determine when to listen and when to speak, ensuring smooth interactions.
Setting Up the Development Environment
Prerequisites
Before diving into the code, ensure you have the following:
- Python 3.11+
- VideoSDK Account: Sign up at app.videosdk.live to access necessary APIs.
Step 1: Create a Virtual Environment
Creating a virtual environment is crucial to manage dependencies effectively. Run the following command:
1python3 -m venv venv
2source venv/bin/activate # On Windows use `venv\Scripts\activate`
3Step 2: Install Required Packages
With your virtual environment activated, install the necessary packages:
1pip install videosdk
2pip install python-dotenv
3Step 3: Configure API Keys in a .env file
Create a
.env file in your project directory and add your VideoSDK API key:1VIDEOSDK_API_KEY=your_api_key_here
2Building the AI Voice Agent: A Step-by-Step Guide
Let's dive into building the AI Voice Agent. Here's the complete code block that you'll be working with:
1import asyncio, os
2from videosdk.agents import Agent, AgentSession, CascadingPipeline, JobContext, RoomOptions, WorkerJob, ConversationFlow
3from videosdk.plugins.silero import SileroVAD
4from videosdk.plugins.turn_detector import TurnDetector, pre_download_model
5from videosdk.plugins.deepgram import DeepgramSTT
6from videosdk.plugins.openai import OpenAILLM
7from videosdk.plugins.elevenlabs import ElevenLabsTTS
8from typing import AsyncIterator
9
10# Pre-downloading the Turn Detector model
11pre_download_model()
12
13agent_instructions = "{\n \"persona\": \"efficient LLM orchestration assistant\",\n \"capabilities\": [\n \"explain the concept of LLM orchestration\",\n \"guide users through setting up LLM orchestration\",\n \"provide best practices for optimizing LLM workflows\",\n \"answer technical questions related to LLM orchestration\"\n ],\n \"constraints\": [\n \"you are not a certified software engineer and must advise users to consult professional developers for complex implementations\",\n \"avoid providing specific code solutions unless they are part of the VideoSDK framework examples\",\n \"ensure all advice is general and applicable to a wide range of LLM orchestration tools\"\n ]\n}"
14
15class MyVoiceAgent(Agent):
16 def __init__(self):
17 super().__init__(instructions=agent_instructions)
18 async def on_enter(self): await self.session.say("Hello! How can I help?")
19 async def on_exit(self): await self.session.say("Goodbye!")
20
21async def start_session(context: JobContext):
22 # Create agent and conversation flow
23 agent = MyVoiceAgent()
24 conversation_flow = ConversationFlow(agent)
25
26 # Create pipeline
27 pipeline = CascadingPipeline(
28 stt=DeepgramSTT(model="nova-2", language="en"),
29 llm=OpenAILLM(model="gpt-4o"),
30 tts=ElevenLabsTTS(model="eleven_flash_v2_5"),
31 vad=SileroVAD(threshold=0.35),
32 turn_detector=TurnDetector(threshold=0.8)
33 )
34
35 session = AgentSession(
36 agent=agent,
37 pipeline=pipeline,
38 conversation_flow=conversation_flow
39 )
40
41 try:
42 await context.connect()
43 await session.start()
44 # Keep the session running until manually terminated
45 await asyncio.Event().wait()
46 finally:
47 # Clean up resources when done
48 await session.close()
49 await context.shutdown()
50
51def make_context() -> JobContext:
52 room_options = RoomOptions(
53 # room_id="YOUR_MEETING_ID", # Set to join a pre-created room; omit to auto-create
54 name="VideoSDK Cascaded Agent",
55 playground=True
56 )
57
58 return JobContext(room_options=room_options)
59
60if __name__ == "__main__":
61 job = WorkerJob(entrypoint=start_session, jobctx=make_context)
62 job.start()
63Step 4.1: Generating a VideoSDK Meeting ID
To create a meeting ID, use the following
curl command:1curl -X POST \
2 https://api.videosdk.live/v1/meetings \
3 -H "Authorization: Bearer YOUR_API_KEY" \
4 -H "Content-Type: application/json" \
5 -d '{}'
6Step 4.2: Creating the Custom Agent Class
The
MyVoiceAgent class is where you define the behavior of your AI Voice Agent. It inherits from the Agent class provided by VideoSDK and uses the agent_instructions to guide its interactions.1class MyVoiceAgent(Agent):
2 def __init__(self):
3 super().__init__(instructions=agent_instructions)
4 async def on_enter(self): await self.session.say("Hello! How can I help?")
5 async def on_exit(self): await self.session.say("Goodbye!")
6Step 4.3: Defining the Core Pipeline
The
CascadingPipeline is the backbone of the audio processing flow. It integrates various plugins to handle speech-to-text, language processing, and text-to-speech. The use of Silero Voice Activity Detection
ensures accurate detection of speech activity.1pipeline = CascadingPipeline(
2 stt=DeepgramSTT(model="nova-2", language="en"),
3 llm=OpenAILLM(model="gpt-4o"),
4 tts=ElevenLabsTTS(model="eleven_flash_v2_5"),
5 vad=SileroVAD(threshold=0.35),
6 turn_detector=TurnDetector(threshold=0.8)
7)
8Step 4.4: Managing the Session and Startup Logic
The
start_session function initializes the agent session, connects to the context, and starts the session. It ensures the agent remains active until manually terminated. For more details on sessions, refer to AI voice Agent Sessions
.1async def start_session(context: JobContext):
2 # Create agent and conversation flow
3 agent = MyVoiceAgent()
4 conversation_flow = ConversationFlow(agent)
5
6 # Create pipeline
7 pipeline = CascadingPipeline(
8 stt=DeepgramSTT(model="nova-2", language="en"),
9 llm=OpenAILLM(model="gpt-4o"),
10 tts=ElevenLabsTTS(model="eleven_flash_v2_5"),
11 vad=SileroVAD(threshold=0.35),
12 turn_detector=TurnDetector(threshold=0.8)
13 )
14
15 session = AgentSession(
16 agent=agent,
17 pipeline=pipeline,
18 conversation_flow=conversation_flow
19 )
20
21 try:
22 await context.connect()
23 await session.start()
24 # Keep the session running until manually terminated
25 await asyncio.Event().wait()
26 finally:
27 # Clean up resources when done
28 await session.close()
29 await context.shutdown()
30The
make_context function creates a JobContext with RoomOptions, enabling the use of a test playground.1def make_context() -> JobContext:
2 room_options = RoomOptions(
3 # room_id="YOUR_MEETING_ID", # Set to join a pre-created room; omit to auto-create
4 name="VideoSDK Cascaded Agent",
5 playground=True
6 )
7
8 return JobContext(room_options=room_options)
9Finally, the script's entry point ensures the job is started correctly:
1if __name__ == "__main__":
2 job = WorkerJob(entrypoint=start_session, jobctx=make_context)
3 job.start()
4Running and Testing the Agent
Step 5.1: Running the Python Script
To run your AI Voice Agent, execute the following command in your terminal:
1python main.py
2Step 5.2: Interacting with the Agent in the Playground
Once the script is running, you will see a playground link in the console. Open this link in a browser to interact with your agent. Speak into your microphone and listen to the agent's responses.
Advanced Features and Customizations
Extending Functionality with Custom Tools
The VideoSDK framework allows for extending agent capabilities with custom tools. These tools can be integrated into the pipeline to provide additional functionality.
Exploring Other Plugins
While this tutorial uses specific plugins for STT, LLM, and TTS, VideoSDK supports various other options. Explore different plugins to find the best fit for your needs.
Troubleshooting Common Issues
API Key and Authentication Errors
Ensure your API key is correctly set in the
.env file and that your account is active.Audio Input/Output Problems
Check your microphone and speaker settings if you encounter audio issues.
Dependency and Version Conflicts
Ensure all dependencies are up-to-date and compatible with your Python version.
Conclusion
Summary of What You've Built
In this tutorial, you've built a fully functional AI Voice Agent capable of orchestrating LLM workflows. You've learned to set up a development environment, create a custom agent, and test it using VideoSDK.
Next Steps and Further Learning
Explore additional features of the VideoSDK framework and experiment with different plugins to enhance your agent's capabilities.
Want to level-up your learning? Subscribe now
Subscribe to our newsletter for more tech based insights
FAQ