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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
Docker
GbyAI
GbyAI
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
C
Check Point Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
博客园 - Franky
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Last Week in AI
Last Week in AI
L
LangChain Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
telnyx-code-examples/outbound-hold-agent-python at main ·...
anushathukra · 2026-06-26 · via Hacker News - Newest: "AI"
name outbound-hold-agent
title Outbound Hold-Aware AI Agent
description Call a business, navigate IVRs with a Telnyx AI Assistant, pause the assistant during hold, monitor with transcription, and resume with context when a representative answers.
language python
framework fastapi
telnyx_products

Voice

AI Assistants

Transcription

TeXML

channel

voice

Outbound Hold-Aware AI Agent

Build an outbound Telnyx AI voice agent that can call a business, navigate an IVR, stop the active AI Assistant during hold, monitor the call with transcription, and restart a representative-facing assistant with the original objective and approved context.

This is useful for agents that call insurance companies, hotels, clinics, service providers, or any business where the agent may spend several minutes in menus and hold queues before a human answers.

What This Example Does

  • Places an outbound Call Control call.
  • Starts an IVR navigation AI Assistant after answer.
  • Lets the assistant request backend-owned DTMF through /tools/send-dtmf.
  • Detects hold from Telnyx events, assistant tool calls, or transcript phrases.
  • Stops the active assistant during hold with ai_assistant_stop.
  • Starts transcription-only monitoring during hold.
  • Detects representative pickup from call.unhold or transcript phrases.
  • Starts a second AI Assistant with the original task, context, hold duration, and recent transcript.
  • Exposes an /tools/end-call tool for task completion.
  • Includes a deterministic fake company TeXML flow for repeatable testing.

Telnyx API Endpoints Used

  • Dial: POST /v2/calls - API reference
  • Start AI Assistant: POST /v2/calls/{call_control_id}/actions/ai_assistant_start - API reference
  • Stop AI Assistant: POST /v2/calls/{call_control_id}/actions/ai_assistant_stop - API reference
  • Send DTMF: POST /v2/calls/{call_control_id}/actions/send_dtmf - API reference
  • Transcription Start: POST /v2/calls/{call_control_id}/actions/transcription_start - API reference
  • Transcription Stop: POST /v2/calls/{call_control_id}/actions/transcription_stop - API reference
  • Hangup: POST /v2/calls/{call_control_id}/actions/hangup - API reference

Telnyx Webhook Events

  • call.answered - start the IVR assistant.
  • call.hold - stop the assistant and enter hold monitoring.
  • call.unhold - treat the call as representative-ready.
  • call.transcription - detect hold and representative pickup phrases.
  • call.hangup - mark the local session ended.

Architecture

Client / workflow
  -> POST /calls/outbound
  -> Telnyx dials target company
  -> call.answered
  -> IVR AI Assistant starts
  -> assistant calls /tools/send-dtmf for menus
  -> hold detected
  -> backend stops assistant
  -> transcription-only hold monitoring
  -> representative detected
  -> representative AI Assistant starts with context
  -> task completes
  -> assistant calls /tools/end-call

Environment Variables

Variable Required for real calls Description
TELNYX_API_KEY yes Telnyx API key used for Voice API requests.
TELNYX_CONNECTION_ID yes Voice API / Call Control connection ID.
TELNYX_FROM_NUMBER yes Telnyx caller ID number in E.164 format.
TELNYX_IVR_ASSISTANT_ID yes Assistant used for menu navigation before hold.
TELNYX_REPRESENTATIVE_ASSISTANT_ID yes Assistant used after representative pickup.
PUBLIC_BASE_URL yes Public HTTPS base URL for webhooks, assistant tools, and fake company TeXML.
TELNYX_PUBLIC_KEY recommended Telnyx webhook public key for signature verification.
TRANSCRIPTION_ENGINE no Defaults to Deepgram.
TRANSCRIPTION_MODEL no Defaults to nova-2.
TRANSCRIPTION_LANGUAGE no Defaults to en.
START_TRANSCRIPTION_DURING_IVR no Defaults to true so phrase detection can catch hold language during demos.
TELNYX_DRY_RUN no Defaults to true for local testing without real Telnyx API calls.
PORT no Local server port. Defaults to 8000.

Setup

git clone https://github.com/team-telnyx/telnyx-code-examples.git
cd telnyx-code-examples/outbound-hold-agent-python
cp .env.example .env
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -r requirements.txt
python app.py

Keep python app.py running in this terminal. Open a second terminal in the same folder to run the curl commands.

Try It Locally

Dry-run mode is enabled by default, so this creates a local session and mock Telnyx command responses:

curl -X POST http://127.0.0.1:8000/calls/outbound \
  -H "Content-Type: application/json" \
  -d '{
    "to":"+15551234567",
    "objective":"book a hotel reservation for Friday night",
    "target_company":"Willow Creek Hotel",
    "context":{"guest_name":"Alex Morgan","party_size":2}
  }'

Simulate Telnyx answering the call by using the returned call_control_id:

curl -X POST http://127.0.0.1:8000/webhooks/telnyx \
  -H "Content-Type: application/json" \
  -d '{"data":{"event_type":"call.answered","payload":{"call_control_id":"dry-run-call-id"}}}'

Simulate IVR menu navigation:

curl -X POST http://127.0.0.1:8000/tools/send-dtmf \
  -H "Content-Type: application/json" \
  -d '{"digits":"1","reason":"reservations menu option"}'

Simulate hold detection:

curl -X POST http://127.0.0.1:8000/tools/hold-detected \
  -H "Content-Type: application/json" \
  -d '{"reason":"please hold for the next available representative","confidence":0.95}'

Simulate representative pickup from transcription:

curl -X POST http://127.0.0.1:8000/webhooks/telnyx \
  -H "Content-Type: application/json" \
  -d '{"data":{"event_type":"call.transcription","payload":{"call_control_id":"dry-run-call-id","transcript":"thanks for holding, this is Sarah with reservations"}}}'

Inspect state:

curl http://127.0.0.1:8000/sessions

Test With The Built-In Fake Company

Expose the app:

Set PUBLIC_BASE_URL to the HTTPS ngrok URL. Then point a Telnyx TeXML application or test number at:

https://YOUR_PUBLIC_BASE_URL/fake-company/texml

The fake company answers as Willow Creek Hotel, presents a menu, accepts digit 1, emits hold language, and then emits a representative pickup phrase. Use this before calling a real company.

Assistant Tools

Configure the IVR assistant with these tools:

POST https://YOUR_PUBLIC_BASE_URL/tools/send-dtmf
POST https://YOUR_PUBLIC_BASE_URL/tools/hold-detected

Configure the representative assistant with this optional tool:

POST https://YOUR_PUBLIC_BASE_URL/tools/end-call

API Reference

See API.md for local endpoints exposed by this example.

Going to Production

  • Set TELNYX_DRY_RUN=false.
  • Expose the app over public HTTPS and set PUBLIC_BASE_URL.
  • Configure your Telnyx Voice API application webhook URL to https://YOUR_PUBLIC_BASE_URL/webhooks/telnyx.
  • Set TELNYX_PUBLIC_KEY so webhook signatures are verified.
  • Add authentication to local workflow endpoints and assistant tool endpoints.
  • Keep DTMF actions backend-owned and validate allowed digits per target company.
  • Replace in-memory sessions with persistent storage.
  • Add destination allowlists, rate limits, retries, and stuck-call alerting.
  • Review outbound calling, AI disclosure, recording, transcription, and retention requirements.

Troubleshooting

Issue Cause Fix
Curl works but no real call is placed TELNYX_DRY_RUN=true Set TELNYX_DRY_RUN=false after configuring Telnyx values.
Assistant does not start Missing assistant ID or no call.answered webhook Check assistant IDs and webhook URL.
DTMF tool is accepted but IVR does not move Wrong digit or DTMF sent before menu is ready Confirm the assistant waits for the prompt and sends a valid option.
Representative assistant never starts No pickup phrase was detected Tune REPRESENTATIVE_PHRASES or trigger call.unhold.
Webhook returns 401 Signature verification failed Confirm TELNYX_PUBLIC_KEY and webhook signature headers.

Resources

Why Telnyx

Telnyx is an AI Communications Infrastructure platform that exposes outbound calling, call-control webhooks, DTMF, AI Assistants, and real-time transcription in one Voice API, so the app can control the full call lifecycle without stitching together separate providers.

Related Examples