# What is Voice Agent? Also called Voice AI Agent, Voice Bot. A voice agent is a system that holds a spoken conversation, converting the caller's speech to text, deciding on a response, and speaking that response back. It runs over a phone line, a web audio session, or a device microphone. Beyond answering questions, most voice agents can take actions such as booking, looking up records, or transferring the call. The classic design chains three stages: speech recognition, a language model or dialogue engine, and speech synthesis. Newer speech to speech models collapse the chain, taking audio in and emitting audio out, which preserves tone and cuts delay but makes the intermediate text harder to inspect. Both designs need turn detection to decide when the speaker has actually finished. Voice is unforgiving about time. A silence beyond roughly a second reads as a malfunction, so every stage is budgeted in milliseconds and responses often begin streaming before the full answer is decided. Audio quality is the other constraint. Compressed phone audio, background noise, and unfamiliar accents all degrade recognition, so the agent has to confirm critical details rather than assume them. A voice agent is not a text chatbot with speech attached. Spoken dialogue has interruptions, filler words, partial sentences, and no scrollback, so answers must be short and structured for listening. Numbers, spellings, and email addresses need explicit confirmation. Anything that would be a bulleted list in text has to become a sequence of short spoken turns. Design also has to cover the exits. Callers with an emergency, an unusual request, or a strong preference for speaking to someone need a route out that does not feel like a maze. The measure of a voice deployment is not how many calls it keeps but how many callers finish with the thing they called about resolved. ## Key points - Chains recognition, reasoning, and synthesis, or uses speech to speech models - Response delay is the dominant quality factor - Answers must be short, since there is no scrollback - Critical values such as numbers need spoken confirmation - A clear route out matters as much as the automated path ## In practice A dental practice routes after hours calls to a voice agent. A caller says they chipped a tooth and need to be seen. The agent asks whether there is pain and bleeding, offers the two open slots on Thursday, confirms the caller's name by spelling it back, books the appointment, and sends a text confirmation. A caller reporting facial swelling is transferred to the emergency number instead. ## Related terms - [Speech to Text](/en/glossary/speech-to-text) - [Text to Speech](/en/glossary/text-to-speech) - [Telephony Integration](/en/glossary/telephony-integration) - [Voice Latency](/en/glossary/voice-latency) - [Barge In](/en/glossary/barge-in) [Back to the AI Glossary](/en/glossary)