cd /news/artificial-intelligence/voice-is-currently-the-worst-way-to-… · home topics artificial-intelligence article
[ARTICLE · art-104167] src=unite.ai ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

Voice Is Currently the Worst Way to Communicate With AI

New research from the United States concludes that speaking to AI models such as ChatGPT or Gemini produces worse results than typing prompts, even when typed prompts contain mistakes. The study found that transcription systems remove disfluencies and restructure spoken input, losing information the model depends on, while ordinary typing errors had only a modest effect on performance.

read8 min views2 publishedAug 12, 2026
Voice Is Currently the Worst Way to Communicate With AI
Image: Unite (auto-discovered)

[ Anderson's Angle

](https://www.unite.ai/series/andersons-angle/)


[Add Unite.AI to your preferred sources on Google](https://www.google.com/preferences/source?q=unite.ai)

New research suggests that sci-fi’s most popularly-depicted method of interfacing with AI may actually produce worse results than even badly-typed prompts.

From HAL to Deep Thought, from C3P0 to Wall-E, the idealized form of human/AI relations has always centered around voice-control; and this has manifested in the real world, from early assistant systems such as Siri and Alexa, to language-based querying and colloquy with the current range of frontier LLMs. This idea emerged during less emancipated eras, where – with the exception of authors and journalists – the very act of typing was considered ‘semi-skilled labor’, and was undertaken almost exclusively by women – with the women themselves rarely originating the content they were typing.

Power and agency was signified instead by discourse: meetings and summits. It seemed obvious, therefore, that with complex language signifying intelligence, the spoken word would inevitably become AI’s natural medium.

Besides any other consideration, textual interchanges were not well-adapted to TV and movies; even daring SF thrillers such as (1970), which depicted a computer responding to human vocal commands in written-text form, quickly switched to entirely vocalized responses:

Colossus: The Forbin Project

Type or Talk? #

Despite the fact that the world’s leading AI models offer native audio interfaces for users, new research from the US has concluded that speaking to an AI is likely to be the *least effective *way to obtain the results that you want from it – particularly if you are expecting significant forms of output, such as code, in response to your query.

According to the paper, * speaking* to an LLM such as ChatGPT or Gemini currently produces worse results than typing a prompt or query, even when the typed prompt contains ordinary mistakes.

This is because spoken input is more likely to be restructured by transcription systems in ways that remove information that the model depends on. This occurs because transcription from audio must remove disfluencies such as ‘erm’, and ‘like’, as well as the tendency toward false starts (i.e., ‘starting over’), as well as navigating ambiguities of grammar and ‘casual’ construction (i.e., sentences that trail off into brand new sentences, without completion in their own right).

The authors state:

*‘Speaking is now a first-class path into a language model rather than a niche one. Coding agents such as Claude Code and Codex accept dictated instructions. Phone assistants such as Google Assistant and Siri route a spoken request to an LLM backend. Dictation front-ends such as Typeless add a further LLM-powered layer that cleans and reformats the user’s spoken request before it is sent. *

‘In each case the model receives a transcript, and in each case the speaker might not proofread the string that was actually sent. Whatever the transcription pipeline leaves behind, or rewrites, is what the model has to answer.’

This dispels any preconception that typed input is superior because it is ‘native’; it’s not native in any sense, since a) it is always either clandestinely or overtly redrafted in some way before transmission to the AI, and b) textual language is only one component in the latent space that is returning an answer.

The study’s experiments found that ordinary typing mistakes only had a modest effect on performance, while conversational speech, cleaned-up transcripts, and especially AI-compressed transcriptions, consistently caused much larger declines in accuracy across reasoning and code-generation tasks.

The new work is titled * Should We Type or Talk to LLM Agents? A Comprehensive Study of Voice and Keyboard Input Perturbations*, and comes from four authors across Santa Monica College and the University of Southern California.

(Note: This particular study interweaves ‘Method’ and ‘Tests/Results’ in a way that can’t easily be unpicked into my usual order of analysis. Therefore I am constrained to compress and select with a heavier hand than usual.)

Method #

A ‘perturbation suite’ called the Human Input Variation Engine (HIVE) was developed by the authors, to simulate the kinds of errors introduced when people either type prompts on a QWERTY keyboard, or speak them through a voice-transcription system:

HIVE models three routes by which prompts reach a language model: through voice; a QWERTY keyboard; or direct copy-and-paste – with the latter serving as the unmodified reference against which all other inputs are compared. Two additional operators function as experimental controls, by reordering the question and its context, or by permuting multiple-choice answer options.

The perturbation operators themselves are implemented through either deterministic rules or few-shot LLM style transfer using Qwen2.5-7B. This allowed both input methods to be evaluated under controlled and directly comparable conditions.

Test Conditions and Results #

Experiments were run across Llama-3.1-8B; Qwen2.5-7B; Qwen3-8B; Mistral-7B-v0.3; and Phi-4, using five seeds. The six benchmarks used were GSM8K; GSM-Symbolic; GSM1k; HumanEval; MMLU-Pro STEM; and TruthfulQA MC1.

The test-set used 200 items per benchmark, with 164 items for the full HumanEval set. Greedy decoding (choosing the most likely next token each time) was used, so that each perturbed prompt could be compared against its own clean counterpart in the same model run, producing 550,000 scored answers across seventeen prompt changes and two control tests (comparison tests used to isolate specific effects).

Measures were taken to ensure that test-set contamination (overlap with data the model may have seen during training) did not occur:

The clearest result in the study is that voice input was more damaging than keyboard input across the main test conditions, with speech-based changes reducing model accuracy by about three times as much as typing mistakes. The worst results came when spoken requests were automatically rewritten to sound cleaner and more concise, because that cleanup often changed the structure of the request the model received.

This matters, because the weaker results for voice were not primarily caused by obvious speech ‘debris’: though fillers such as ‘um’ and ‘like’ did matter (since adding them to clean written prompts lowered accuracy), removing fillers from spoken transcripts did not restore performance.

Self-Preservation

Therefore the larger problem was * the way spoken prompts were restructured before reaching the model*.

A central question for the study was whether the model still received enough of the original prompt to reconstruct the user’s intent; typing errors often damage the ‘surface’ of a word without removing the word entirely, so that the surrounding context can still help the model infer what was meant.

By contrast, a ‘cleaned-up’ voice transcript may replace the user’s original phrasing with a shorter and smoother version * that no longer preserves the same relationships between facts*.

This is why keyboard errors were often less harmful: the researchers found that transposed letters, duplicated letters, missed spaces and nearby-key mistakes usually left much of the original wording recoverable, while speech cleanup more often removed or reorganized information before the model had a chance to interpret it.

Lost in Translation

One example of how a referent can ‘get lost’ by perturbation on these journeys from user to the LLM, featured in the paper, is where the phrase * ‘she gave an equal amount [of books] to her kids’* was reinterpreted as meaning money (rather than books). In this case, the term ‘amount’ became detached from its referent, and was mistakenly re-applied to its most common association (money):

This effect was strongest when the model had to * build an answer from the prompt*, rather than choose from options already supplied: arithmetic and code-generation tasks suffered more because they depended on preserving the exact relationships in the request, whereas multiple-choice tests were less exposed to this kind of damage.

The authors conclude:

*‘We find that speaking is the expensive channel, that what damage costs is how much of the question’s original tokenization it destroys, and that neither test-set contamination nor lightweight adaptation accounts for or repairs the harm. *

*‘Several takeaways follow. If you type, a reasoning model absorbs your errors. If you dictate it does not, so the phrasing you speak is the phrasing the model works from. *

*‘And if you build dictation tools, do not reformat or restructure what the user said: strip disfluency minimally and leave homophones alone. *

‘That last one matters most, because dictation front-ends are becoming a default way to reach a model and their rewriting layer is the largest harm we measure and the cheapest thing to change.’

Conclusion #

Anyone who has ever had to manually transcribe an interview (a common and lonely journalistic drudgery in the pre-AI age) will know how interpretive the process can be, unless the interviewee or speaker is extraordinarily articulate, or – as is often the case – just parroting their customary roster of anecdotes in a rote manner.

Aside from such particular cases, as we speak to people, we are automatically discounting disfluencies and calculating meaning. This inevitably makes useful transcription an interpretive act, resulting in text that represents the speaker’s intentions better than a literal, vowel-perfect transliteration possibly could; and it is interesting to note that audio bridges to LLM struggle similarly to retain or even obtain the same meaning as text equivalents.

It is reasonable to expect that later frameworks will benefit from further study and (hopefully) populous datasets that will help to bridge the gulfs outlined in the new work. Until that time, the new study indicates that voice communications with AI may be more suited to exactly the kind of short commands that have characterized consumer-level ‘assistant’ systems.

First published Wednesday, August 12, 2026

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @chatgpt 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/voice-is-currently-t…] indexed:0 read:8min 2026-08-12 ·