What is an AI voice agent?

Software that holds a real spoken conversation on a phone call, not a chat window read aloud.

An admin approves every new account by hand. Nothing is created until then. We reply by email; no newsletter, no sequence.

app.salescrew.io/inbox
The unified reply inbox with classified threads

AI voice agentAn AI voice agent is software that holds a spoken phone conversation in real time — listening, deciding, speaking — to answer questions, qualify a caller, book an appointment or route the call, using speech recognition, a language model and speech synthesis together. It is built for calls, not chat.

Why it matters

A phone call has none of the slack a chat window gives a bot. There is no typing delay to hide behind, no way to re-read the last message, and no pause button while the model thinks. Three systems have to work together, fast enough that the gap feels like a normal pause: speech recognition turns the caller's words into text, a language model decides what to say back, and speech synthesis turns that decision into audio the caller hears within roughly a second.

The tasks an agent takes on, answering a question, qualifying whether the caller fits, booking a slot on a calendar, or routing to the right person, are the same tasks a chat bot handles. What changes is the format: a caller talks over the agent, changes their mind mid-sentence, and gives up if the pause before a reply feels wrong. An agent built for chat and pointed at a phone line usually fails on exactly those points.

What a call passes through

  1. 1

    Caller speaks

    Audio comes in over the phone line, usually through a SIP trunk or a telephony provider.

  2. 2

    Speech to text

    The audio is transcribed to text the language model can read, in near real time.

  3. 3

    The model decides

    A language model reasons over the transcript and the conversation so far, and decides what to say or do next.

  4. 4

    Text to speech

    The reply is converted back into spoken audio in the agent's chosen voice.

  5. 5

    The caller hears it

    Total delay across all three steps is what callers experience as the agent's response time.

The mistake to watch for

Judging it on the demo call. Judge it on the tenth call with a caller who interrupts, mumbles and changes their mind.

Questions

What is the difference between an AI voice agent and an IVR?
An IVR is a fixed phone menu: press 1 for sales, say your account number. It follows a script and cannot understand anything outside it. An AI voice agent understands open speech and can hold an actual conversation, including a caller who interrupts or asks something the menu never anticipated.
Does an AI voice agent need a script?
It needs instructions and knowledge about the business, not a rigid script. A well-built agent can handle a caller going off the expected path, which is exactly the case a scripted menu cannot cover.
Can an AI voice agent handle inbound and outbound calls?
Yes, though the two are usually tuned differently. Inbound agents are built to answer whatever the caller brings; outbound agents are built to run through a specific goal, like confirming an appointment, across many calls.