From fea23975b987fe106a35ff3564bc09a0312f21e2 Mon Sep 17 00:00:00 2001 From: "sazed-bot[bot]" <257607474+sazed-bot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 20:27:11 +0000 Subject: [PATCH] Add Pizza Shop Phone Agent with Order Status Lookup recipe --- ...-phone-agent-with-order-status-lookup.json | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 recipes/pizza-shop-phone-agent-with-order-status-lookup.json diff --git a/recipes/pizza-shop-phone-agent-with-order-status-lookup.json b/recipes/pizza-shop-phone-agent-with-order-status-lookup.json new file mode 100644 index 0000000..135a83d --- /dev/null +++ b/recipes/pizza-shop-phone-agent-with-order-status-lookup.json @@ -0,0 +1,58 @@ +{ + "id": "pizza-shop-phone-agent-with-order-status-lookup", + "slug": "pizza-shop-phone-agent-with-order-status-lookup", + "title": "Pizza Shop Phone Agent with Order Status Lookup", + "description": "A conversational AI phone agent that handles inbound and outbound calls, greets callers naturally, and looks up order statuses using function calling. Bridges Twilio Voice to Deepgram's Voice Agent API over WebSocket, with real-time speech-to-text, LLM reasoning, and text-to-speech in a bidirectional audio pipeline. Supports barge-in for natural interruptions.", + "framework": "Custom", + "use_case": "order-taking", + "industry": "restaurant", + "languages": [ + "en-US" + ], + "pipeline": { + "stt": "Deepgram Nova-3", + "llm": "GPT-4o-mini", + "tts": "Deepgram Aura-2", + "telephony": "Twilio Voice" + }, + "metrics": { + "latency_p50_ms": null, + "latency_p95_ms": null, + "latency_display": null, + "cost_per_minute_usd_min": null, + "cost_per_minute_usd_max": null, + "cost_display": null + }, + "raw_prompt": null, + "prompt_file": null, + "config": { + "barge_in": true, + "tools": [ + { + "name": "check_order_status", + "description": "Looks up the status of a customer's pizza order" + } + ], + "encoding": "mulaw", + "sample_rate": 8000 + }, + "github_source_url": "https://github.com/deepgram/examples/tree/main/examples/021-twilio-voice-agent-node", + "demo_url": null, + "tags": [ + "telephony", + "function-calling", + "inbound", + "outbound", + "pizza-shop", + "order-lookup", + "websocket", + "media-streams" + ], + "contributor": { + "github": "lukeocodes" + }, + "source": "github_discovery", + "created_at": "2025-05-26T17:45:00-07:00", + "updated_at": "2025-05-26T17:45:00-07:00", + "license": "MIT" +}