End-to-end open-source voice agents platform: Quickly build voice firsts conversational assistants through a json.
[!NOTE] We are actively looking for maintainers.
Bolna is the end-to-end open source production ready framework for quickly building LLM based voice driven conversational applications.
https://github.com/bolna-ai/bolna/assets/1313096/2237f64f-1c5b-4723-b7e7-d11466e9b226
This repository contains the entire orchestration platform to build voice AI applications. It technically orchestrates voice conversations using combination of different ASR+LLM+TTS providers and models over websockets.
Bolna helps you create AI Voice Agents which can be instructed to do tasks beginning with:
graph LR;
A[Bolna open source] -->B[Hosted APIs];
B[Hosted APIs] --> C[Hosted Playground]
Twilio, Plivo, Exotel (coming soon), Vonage (coming soon) etc.Deepgram, Azure etc.OpenAI, DeepSeek, Llama, Cohere, Mistral, etc to handle conversationsAWS Polly, ElevenLabs, Deepgram, OpenAI, Azure, Cartesia, Smallest etc.Refer to the docs for a deepdive into all supported providers.
A basic local setup includes usage of Twilio or Plivo for telephony. We have dockerized the setup in local_setup/. One will need to populate an environment .env file from .env.sample.
The setup consists of four containers:
ngrok: for tunneling. One will need to add the authtoken to ngrok-config.ymlredis: for persisting agents & prompt dataThe easiest way to get started is to use the provided script:
cd local_setup
chmod +x start.sh
./start.sh
This script will check for Docker dependencies, build all services with BuildKit enabled, and start them in detached mode.
Alternatively, you can manually build and run the services:
bash
export DOCKER_BUILDKIT=1
export COMPOSE_DOCKER_CLI_BUILD=1bash
docker compose buildbash
docker compose up -dTo run specific services only:
docker compose up -d bolna-app twilio-app
# or
docker compose up -d bolna-app plivo-app
Once the docker containers are up, you can now start to create your agents and instruct them to initiate calls.
You may try out different agents from example.bolna.dev.
You can also build and run an agent directly in Python without the local telephony setup.
Example script: examples/simple_assistant.py
import asyncio
from bolna.assistant import Assistant
from bolna.models import (
Transcriber,
Synthesizer,
ElevenLabsConfig,
LlmAgent,
SimpleLlmAgent,
)
async def main():
assistant = Assistant(name="demo_agent")
# Configure audio input (ASR)
transcriber = Transcriber(provider="deepgram", model="nova-2", stream=True, language="en")
# Configure LLM
llm_agent = LlmAgent(
agent_type="simple_llm_agent",
agent_flow_type="streaming",
llm_config=SimpleLlmAgent(
provider="openai",
model="gpt-4o-mini",
temperature=0.3,
),
)
# Configure audio output (TTS)
synthesizer = Synthesizer(
provider="elevenlabs",
provider_config=ElevenLabsConfig(
voice="George", voice_id="JBFqnCBsd6RMkjVDRZzb", model="eleven_turbo_v2_5"
),
stream=True,
audio_format="wav",
)
# Build a single coherent pipeline: transcriber -> llm -> synthesizer
assistant.add_task(
task_type="conversation",
llm_agent=llm_agent,
transcriber=transcriber,
synthesizer=synthesizer,
enable_textual_input=False,
)
# Stream results
async for chunk in assistant.execute():
print(chunk)
if __name__ == "__main__":
asyncio.run(main())
How to run:
export OPENAI_API_KEY=...
export DEEPGRAM_AUTH_TOKEN=...
export ELEVENLABS_API_KEY=...
python examples/simple_assistant.py
This demonstrates orchestration and streaming output. For telephony, use the services in local_setup/.
Note: For REST-based usage (Agent CRUD over HTTP), see API.md in the repo root.
Expected output shape: assistant.execute() is an async generator yielding per-task result dicts (event-like chunks). The exact keys depend on configured tools/providers; treat it as a stream and process incrementally.
If you want a text-only flow (no transcriber/synthesizer), you can enable a text-only pipeline:
Example script: examples/text_only_assistant.py
import asyncio
from bolna.assistant import Assistant
from bolna.models import LlmAgent, SimpleLlmAgent
async def main():
assistant = Assistant(name="text_only_agent")
llm_agent = LlmAgent(
agent_type="simple_llm_agent",
agent_flow_type="streaming",
llm_config=SimpleLlmAgent(
provider="openai",
model="gpt-4o-mini",
temperature=0.2,
),
)
# No transcriber/synthesizer; enable a text-only pipeline
assistant.add_task(
task_type="conversation",
llm_agent=llm_agent,
enable_textual_input=True,
)
async for chunk in assistant.execute():
print(chunk)
if __name__ == "__main__":
asyncio.run(main())
How to run (text-only):
export OPENAI_API_KEY=...
python examples/text_only_assistant.py
Expected output shape: assistant.execute() yields streaming dicts per task step; fields vary by configuration. Handle chunk-by-chunk.
You can populate the .env file to use your own keys for providers.
ASR Providers
These are the current supported ASRs Providers:
| Provider | Environment variable to be added in .env file |
|---|---|
| Deepgram | DEEPGRAM_AUTH_TOKEN |
LLM Providers
Bolna uses LiteLLM package to support multiple LLM integrations.
These are the current supported LLM Provider Family: https://github.com/bolna-ai/bolna/blob/10fa26e5985d342eedb5a8985642f12f1cf92a4b/bolna/providers.py#L30-L47
For LiteLLM based LLMs, add either of the following to the .env file depending on your use-case:
LITELLM_MODEL_API_KEY: API Key of the LLM
LITELLM_MODEL_API_BASE: URL of the hosted LLM
LITELLM_MODEL_API_VERSION: API VERSION for LLMs like Azure
For LLMs hosted via VLLM, add the following to the .env file:
VLLM_SERVER_BASE_URL: URL of the hosted LLM using VLLM
TTS Providers
These are the current supported TTS Providers: https://github.com/bolna-ai/bolna/blob/c8a0d1428793d4df29133119e354bc2f85a7ca76/bolna/providers.py#L7-L14
| Provider | Environment variable to be added in .env file |
|---|---|
| AWS Polly | Accessed from system wide credentials via ~/.aws |
| Elevenlabs | ELEVENLABS_API_KEY |
| OpenAI | OPENAI_API_KEY |
| Deepgram | DEEPGRAM_AUTH_TOKEN |
| Cartesia | CARTESIA_API_KEY |
| Smallest | SMALLEST_API_KEY |
Telephony Providers
These are the current supported Telephony Providers:
| Provider | Environment variable to be added in .env file |
|---|---|
| Twilio | TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN, TWILIO_PHONE_NUMBER |
| Plivo | PLIVO_AUTH_ID, PLIVO_AUTH_TOKEN, PLIVO_PHONE_NUMBER |
We have in the past tried to maintain both the open source and the hosted solution (via APIs and a UI dashboard).
We have fluctuated b/w maintaining this repository purely from a point of time crunch and not interest.
Currently, we are continuing to maintain it for the community and improving the adoption of Voice AI.
Though the repository is completely open source, you can connect with us if interested in managed hosted offerings or more customized solutions.

In case you wish to extend and add some other Telephony like Vonage, Telnyx, etc. following the guidelines below: 1. Make sure bi-directional streaming is supported by the Telephony provider 2. Add the telephony-specific input handler file in input_handlers/telephony_providers writing custom functions extending from the telephony.py class 1. This file will mainly contain how different types of event packets are being ingested from the telephony provider 3. Add telephony-specific output handler file in output_handlers/telephony_providers writing custom functions extending from the telephony.py class 1. This mainly concerns converting audio from the synthesizer class to a supported audio format and streaming it over the websocket provided by the telephony provider 4. Lastly, you'll have to write a dedicated server like the example twilio_api_server.py provided in local_setup to initiate calls over websockets.
We love all types of contributions: whether big or small helping in improving this community resource.
$ claude mcp add bolna \
-- python -m otcore.mcp_server <graph>