Skip to main content

asterisk-ai-voice-agent

CI PyPI license

Put an AI agent on the phone. Asterisk bridges a live call to this sidecar over AudioSocket, and the sidecar runs a streaming speech-to-text → LLM → text-to-speech loop, so the caller has an actual back-and-forth conversation, interruptions and all. It's self-hosted: your PBX, your API keys, your prompts, no per-minute SaaS in the middle.

  ┌────────┐   RTP    ┌──────────┐  AudioSocket (TCP)  ┌───────────────────────┐
  │ Caller │◀───────▶│ Asterisk │◀───────────────────▶│  ai-voice-agent       │
  └────────┘          └──────────┘   slin16 8 kHz      │  STT → LLM → TTS loop │
                                                        │  + tool calling       │
                                                        └───────────┬───────────┘
                                                  Whisper/Scribe · Claude · Piper/ElevenLabs

What you get

  • Speech in via OpenAI Whisper or ElevenLabs Scribe, with WebRTC VAD deciding when you've stopped talking.
  • The brain is Anthropic Claude, streamed token-by-token so the agent starts replying before the whole answer is ready. Swapping in another LLM means implementing one small module interface, documented in PORTING.md.
  • Speech out via Piper, which runs locally and costs nothing, or ElevenLabs if you want their voices. Either way it's resampled to the 8 kHz slin16 that Asterisk expects.
  • Barge-in. Start talking and the agent shuts up, like a real conversation.
  • Tool calling. Let the model transfer the call, schedule a callback, look something up in your CRM. Calls go out to a webhook you control, so the actual logic stays in your stack.
  • Personas are just YAML: a greeting, a system prompt, which voice, which model, which tools.
  • The pacing is handled. This is the part everyone gets wrong the first time (more below).
  • Runs in Docker. docker compose up, point Asterisk at it, done.

How it works

  1. Your dialplan answers a call and runs AudioSocket(<uuid>,<host>:9092), passing a persona name via a channel variable.
  2. The sidecar accepts the AudioSocket connection, reads the UUID frame, and loads that persona from personas.yaml.
  3. It speaks the greeting (TTS → AUDIO frames), then loops: caller audio → STT → on a final transcript, stream the LLM reply → buffer to sentence boundaries → TTS → paced AUDIO frames back.
  4. If the LLM emits a tool_use, the sidecar POSTs it to your configured tools webhook, feeds the result back, and continues.
  5. On hangup it tears the call down and (optionally) POSTs a transcript to your webhook.

The AudioSocket framing/pacing lives in a standalone, tested package: asterisk-audiosocket (Node/TypeScript), and in asterisk_ai_voice_agent/audiosocket.py here (Python). Same wire protocol, pick your language.

A word on pacing. app_audiosocket shoves each AUDIO frame at the channel the moment it arrives. So if you synthesize a sentence and write it all at once, you overrun the far end's jitter buffer and the caller hears only the tail of every phrase, which is baffling until you figure out why. The sidecar meters outbound audio to the 20 ms frame clock and re-clamps the deadline every frame, so a slow TTS response can't make it burst to catch up. We learned this one the hard way in production; if you roll your own, steal this bit.

Quick start (Docker)

git clone https://github.com/ictinnovations/asterisk-ai-voice-agent
cd asterisk-ai-voice-agent
cp config.example.yaml config.yaml          # add your API keys
cp personas.example.yaml personas.yaml      # define your agent(s)
docker compose up -d

Quick start (pip)

Piper's phonemizer needs espeak-ng on the host, so install that first.

sudo apt-get install -y espeak-ng
pip install asterisk-ai-voice-agent

cp config.example.yaml config.yaml
cp personas.example.yaml personas.yaml
AI_AGENT_CONFIG=config.yaml AI_AGENT_PERSONAS=personas.yaml asterisk-ai-voice-agent

Add to your Asterisk extensions.conf:

#include "ai-voice-agent.conf"

Copy asterisk/ai-voice-agent.conf into /etc/asterisk/ and dialplan reload, then test. This rings your SIP phone and, when you answer, drops you into the demo persona:

# Replace PJSIP/1001 with your own endpoint (e.g. SIP/1001, PJSIP/myphone).
asterisk -rx 'originate PJSIP/1001 extension demo@ai-agent-test'

Answer the phone and talk to the agent. To route real traffic, point any inbound DID, queue, or extension at the bridge:

exten => _X.,1,Set(PERSONA=support)
 same => n,Goto(ai-agent-bridge,s,1)

Persona config

# personas.yaml
demo:
  greeting: "Hi! Thanks for calling. How can I help you today?"
  system_prompt: |
    You are a friendly, concise phone assistant for Acme Corp.
    Keep answers short and natural for speech. Never invent facts.
  llm_provider: anthropic
  llm_model: claude-sonnet-4-6
  llm_temperature: 0.4
  stt_provider: openai         # Whisper
  stt_language: en
  tts_provider: piper          # or elevenlabs
  tts_voice_id: en_US-amy-medium
  interrupt_enabled: true      # barge-in
  max_call_seconds: 900
  tools_enabled: [transfer, schedule_callback]   # posted to your webhook

Requirements

  • Asterisk 18+ built with app_audiosocket / res_audiosocket.
  • Python 3.10+ (or just Docker).
  • API keys for your chosen providers. Piper TTS is fully local (no key, no cloud).

Configuration

config.yaml holds infrastructure + keys; personas.yaml holds agents. See the *.example.yaml files for the full annotated schema. Key sections:

Section Purpose
listen Host/port the AudioSocket server binds (default 127.0.0.1:9092).
providers API keys for anthropic / openai / elevenlabs; Piper voice dir.
tools.webhook_url Where tool_use calls and transcripts are POSTed. Omit to disable tools.
limits.max_concurrent_calls Concurrency cap (each call ~150 MB during synthesis).

Latency and network tuning

The sidecar sets TCP_NODELAY on every accepted AudioSocket connection, so there's nothing to configure. Outbound audio is one 320-byte frame every 20 ms, and Nagle's algorithm holds writes that small back waiting for more data to coalesce with, which is the opposite of what a paced audio stream wants.

If Asterisk and the sidecar run on the same box over loopback, that's the whole story. Across a network, one kernel knob is worth knowing about:

# Corking can still batch small writes together even with TCP_NODELAY set.
sysctl -w net.ipv4.tcp_autocorking=0

We haven't benchmarked that one, so measure before you keep it. Ignore the older net.ipv4.tcp_low_latency advice you'll find in forum posts; the knob was removed in Linux 4.14 and does nothing today.

Tool calling (webhook contract)

When the LLM calls a tool, the sidecar POSTs:

{ "session": "<uuid>", "tool": "transfer", "args": { "target": "queue:sales" } }

Your endpoint returns a JSON result, which is fed back to the LLM as the tool result. Implement transfer/CRM/scheduling however your stack does it. (In ICTContact these map to Asterisk AMI redirects, spool updates, and CRM connectors.)

Troubleshooting

Symptom Likely cause / fix
AudioSocket fails / call drops immediately Asterisk lacks the module. asterisk -rx 'module show like audiosocket'. You need app_audiosocket.so + res_audiosocket.so (Asterisk 18+).
Call connects but the agent is silent Persona not found (check the sidecar log for no persona … dropping call), or TTS not ready, with no Piper voice in ./voices (./download_voices.sh en_US-amy-medium), or a bad/empty LLM API key.
Agent speaks but audio is choppy / only the tail of each phrase Outbound pacing broken. Do not write TTS frames unpaced. Use the metered writer (_paced_write in agent.py). This is the #1 AudioSocket mistake.
Call drops instantly, log says rejecting unregistered UUID The dialplan pre-register curl didn't reach the sidecar, so the UUID isn't on the allowlist. Confirm register_port (default 9091) is reachable from Asterisk and not firewalled; check for the register line in the sidecar log. Since 0.1.2 an unregistered UUID is dropped rather than served the demo persona.
Remote Asterisk can't reach the sidecar Set listen.host: 0.0.0.0 in config.yaml, publish ports instead of network_mode: host, and firewall 9091/9092. Never expose them publicly.
Barge-in doesn't interrupt interrupt_enabled: true on the persona, and your stt.is_speech() VAD must return True on caller speech.
Tools do nothing tools.webhook_url unset, or the persona's tools_enabled is empty, or the named tool isn't in TOOL_SPECS (tools.py).

Logs: set AI_AGENT_LOG=DEBUG (env or compose) for per-frame detail.

Related open source

  • asterisk-audiosocket - the AudioSocket protocol layer on its own, in TypeScript. Prefer Node over Python? Build the agent in whatever language you like.
  • asterisk-ami-node - Asterisk Manager Interface client, zero dependency. This is what you reach for to implement the transfer tool.
  • freeswitch-esl-node - the same idea for the FreeSWITCH Event Socket.
  • pbx-mcp - a Model Context Protocol server that gives AI assistants a read-only window into Asterisk and FreeSWITCH.
  • ICTCore - the open source telephony framework behind our products.

Provenance & credits

This started life inside ICTContact, our commercial Voice/Fax/SMS/Email broadcasting and contact-center platform, where the same pipeline runs the AI Voice Agent and live voice-translation features. We pulled out the reusable core, cut the platform-specific parts (multi-tenancy, billing, our internal REST layer), and opened it up so you don't have to build the AudioSocket-to-LLM plumbing from scratch.

Maintained by ICT Innovations and ICT Vision, who have been shipping open source and commercial telephony since 2005. Written by Tahir Almas.

If this is useful to you, the wider stack behind it might be too:

  • ICTPBX - white label multi tenant IP PBX, with a free community edition on GitHub
  • ICTContact - contact center and unified communications, where this agent came from
  • ICTDialer - auto and predictive dialer
  • ICTFax - open source fax server

Questions about the commercial products go through the ICT Innovations support portal. Issues and pull requests about this project belong on GitHub, where everyone can read the answer.

License

MIT. © Tahir Almas / ICT Innovations, derived from ICTContact.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asterisk_ai_voice_agent-0.1.2.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

asterisk_ai_voice_agent-0.1.2-py3-none-any.whl (28.4 kB view details)

Uploaded Python 3

File details

Details for the file asterisk_ai_voice_agent-0.1.2.tar.gz.

File metadata

  • Download URL: asterisk_ai_voice_agent-0.1.2.tar.gz
  • Upload date:
  • Size: 31.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for asterisk_ai_voice_agent-0.1.2.tar.gz
Algorithm Hash digest
SHA256 fa58815151c2d5f680fcd5b4df108fe08cb814e7f9ba2c1318b99e12fcc68be9
MD5 6d8a84cd23e563d5339fb66c566e1112
BLAKE2b-256 a78f77d0d9344b84e25640f0f0da0e4fb260bff62e8f92aced730ba87770c2f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for asterisk_ai_voice_agent-0.1.2.tar.gz:

Publisher: publish.yml on ictinnovations/asterisk-ai-voice-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file asterisk_ai_voice_agent-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for asterisk_ai_voice_agent-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cf54b9ab20cdd3f7cf0a2657879c4109f3854eebfc62825eeca5f0dd3249c8d7
MD5 fa58f3646dc10912aad32a86fe3deb24
BLAKE2b-256 1d6aec89fb91f2d747b87d4922a49aa1ce686ea10175acdb6584b5b7278acbbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for asterisk_ai_voice_agent-0.1.2-py3-none-any.whl:

Publisher: publish.yml on ictinnovations/asterisk-ai-voice-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page