惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
WordPress大学
WordPress大学
月光博客
月光博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - 司徒正美
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
Blog — PlanetScale
Blog — PlanetScale
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
L
LangChain Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
量子位

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Paying for Vapi/Retell: Run your own AI Voice Agent ...
BLACKDWARF · 2026-05-03 · via DEV Community

BLACKDWARF

Building AI calling agents shouldn't require a commercial license or massive per-minute markups.

If you are a Python developer, you should be able to spin up a sub-500ms latency voice agent on your own machine.
Today, I'm going to introduce you to Siphon, an open-source (Apache 2.0) Python framework built by BLACKDWARF that natively bridges SIP trunks to LLMs.

Prerequisites

  • Python 3.10+
  • A Twilio or Telnyx SIP Trunk
  • LiveKit Credentials
  • An OpenAI API Key

Step 1: Installation & Setup

First, clone the Siphon repository and install the requirements.

pip install siphon-ai

Enter fullscreen mode Exit fullscreen mode

Next, create a .env file in your project root to hold your raw provider keys.
Because Siphon is self-hosted, you pay providers like OpenAI and LiveKit directly—NO MIDDLEMAN FEES.

LIVEKIT_URL=wss://your-project.livekit.cloud
LIVEKIT_API_KEY=your_livekit_key
LIVEKIT_API_SECRET=your_livekit_secret
OPENAI_API_KEY=sk-yourkey
DEEPGRAM_API_KEY=yourkey
FROM_NUMBER=+15551234567
SIP_USERNAME=your_sip_user
SIP_PASSWORD=your_sip_pass

Enter fullscreen mode Exit fullscreen mode

Step 2: Defining the Agent

Siphon abstracts away the complex WebRTC media pipelines and Voice Activity Detection (VAD).
You just need to define how your agent behaves using Siphon's plugin architecture.

from siphon.agent import Agent
from siphon.plugins import openai, cartesia, deepgram

# Define the Agent
agent = Agent(
    agent_name="Receptionist",
    llm=openai.LLM(),
    tts=cartesia.TTS(),
    stt=deepgram.STT(),
    system_instructions="You are a helpful dental receptionist. Help the user book an appointment."
)

Enter fullscreen mode Exit fullscreen mode

Step 3: Triggering an Outbound Call

Siphon makes outbound SIP signaling incredibly straightforward. If you don’t have a trunk ID setup, you can programmatically trigger a call using SIP credentials, and Siphon will natively reuse or create an outbound trunk.

import os
from dotenv import load_dotenv
from siphon.telephony.outbound import Call

load_dotenv()

# Instantiate the outbound dialing sequence with SIP Credentials
call = Call(
     agent_name="Receptionist",
     sip_trunk_setup={
         "name": "telnyx-primary",
         "sip_address": "sip.telnyx.com",
         "sip_number": os.getenv("FROM_NUMBER"),
         "sip_username": os.getenv("SIP_USERNAME"),
         "sip_password": os.getenv("SIP_PASSWORD"),
     },
     number_to_call="+15550200",
)

# Execute the asynchronous dial and bridge to the LiveKit WebRTC room
call.start()

Enter fullscreen mode Exit fullscreen mode

Step 4: Handling State and Interruptions

One of the hardest things to build in Voice AI is handling interruptions (barge-ins).
Because Siphon uses LiveKit's WebRTC engine natively, it halts TTS output instantly when it detects human speech. Run your script, and you will have a natural, low-latency conversation with your AI—hosted entirely on your own infrastructure.

Check out the full documentation and repository at👾

GitHub: [https://github.com/blackdwarftech/siphon]
Siphon Website: [https://siphon.blackdwarf.in/docs]

and drop us a star if this saves you money!