From 1e82e7c602a2ebadbe3aea0ed376925d4daef3a6 Mon Sep 17 00:00:00 2001 From: milo157 <43028253+milo157@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:30:05 -0400 Subject: [PATCH] Update v4/examples/twilio-voice-agent.mdx Co-authored-by: Jonathan Irwin --- v4/examples/twilio-voice-agent.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v4/examples/twilio-voice-agent.mdx b/v4/examples/twilio-voice-agent.mdx index de6b7383..8aafd3e4 100644 --- a/v4/examples/twilio-voice-agent.mdx +++ b/v4/examples/twilio-voice-agent.mdx @@ -5,8 +5,8 @@ description: "Integrate a real-time AI voice agent with Twilio" In this tutorial, I'm going to create a real-time voice agent that can respond to any query via speech, in speech that is initiated via a phone call using Twilio. This is an extremely flexible implementation where you can swap in any LLM or Text-to-speech (TTS) model of your liking. This is extremely useful for use cases involving voice such as customer support bots and receptionists. -To create this app, we use the [PipeCat](https://www.pipecat.ai/) framework that takes care of stringing together all the components and it handles some of the functionality we -might need such as user interruptions, dealing with audio data etc. +To create this app, we use the [PipeCat](https://www.pipecat.ai/) framework that takes care of stringing together all the components. Pipecat handles some of the functionality we +might need such as user interruptions and dealing with audio data etc. You can find the final version of the code [here](https://github.com/CerebriumAI/examples/tree/master/24-twilio-voice-agent)