Voice is now a production interface: what to use and what to watch in 2026
September 2026 brought GPT-Live-1, Gemini 3.8 Live, Gemini 3.8 Flash TTS and Suno v6, while courts and labels redraw which AI music can be used. This guide sorts models, latency, prices and rules for a team putting voice into production in Spanish and French.
OpenAI made GPT-Live-1 generally available on September 10, 2026: a model that listens and speaks at the same time and hands reasoning to a backend agent, at $0.05 per minute. Google followed with Gemini 3.8 Live on September 15 and Gemini 3.8 Flash TTS on September 22.
In music, Suno launched v6 with Warner, BMG and Believe, but Sony and Universal sued on September 18, and a Munich court ruled against Suno for training on GEMA works. Our reading: choose the architecture for latency and control, always test in your own Spanish and French, treat voice cloning as a legal and fraud risk, and say from the first second that the caller is talking to an AI.
Speech synthesis (TTS): commercial and open-weight options
What is verified as of September 2026, and what you have to test yourself in Spanish and French.
| Model | Access | Languages and limits | Published latency or price |
|---|---|---|---|
| gpt-4o-mini-tts (OpenAI) | API | OpenAI's listed TTS model | $0.60 per 1M text tokens, $12 per 1M audio tokens |
| Gemini 3.8 Flash TTS (Google, Sept 22, 2026) | API | Pitched as studio-grade creative TTS | $0.50 per 1M text tokens, $9 per 1M audio tokens (paid tier) |
| eleven_flash_v2_5 (ElevenLabs) | API | 32 languages, 40,000 characters per request | about 75 ms |
| eleven_v3 and v3_conversational (ElevenLabs) | API | v3: 70+ languages, 5,000 characters per request; v3_conversational: realtime | about 280 ms (conversational) |
| Chatterbox (Resemble AI) | Open weights, MIT | 23 languages per its model card; PerTh watermark on every output | Self-hosted |
| VibeVoice-1.5B (Microsoft) | Open weights, MIT | Long-form, multi-speaker; English and Chinese only | Self-hosted |
What to test. Our rule: write 50 hard sentences per language (numbers, dates and amounts with local separators, tax IDs, proper names, acronyms, English terms), generate them with two or three vendors and run a blind listening test with five people from the target audience. A voice with a Spain accent can sound foreign in Bogotá, and Quebec French is not Paris French.
Transcription (STT): accuracy, diarization and migrations
OpenAI is renewing its line-up: GPT Transcribe (files) and GPT Live Transcribe (low latency) cost $0.017 per minute, the same as GPT-Realtime-Whisper, its streaming transcription model from May. whisper-1, gpt-4o-transcribe, gpt-4o-mini-transcribe and gpt-4o-transcribe-diarize leave the API on February 26, 2027. If you pay $0.006 per minute for legacy Whisper today, your cost almost triples when you migrate.
Google lists Gemini 3.5 Transcribe at about $0.005 per minute. ElevenLabs offers scribe_v2 (90+ languages), scribe_v2_realtime (about 150 ms, per the company) and scribe_v2_medical for clinical audio. Among open weights with clear licences: Whisper large-v3-turbo (about 809M parameters, MIT), NVIDIA Parakeet TDT 0.6B v3 (CC-BY-4.0, 25 European languages) and Mistral Voxtral Mini 3B (Apache 2.0, Spanish and French included).
Accuracy: measure on your own audio. A public leaderboard's WER does not tell you how your contact centre will fare. Test 8 kHz phone audio with real noise, regional accents and dictated numbers (ID numbers, tax IDs, licence plates): OpenAI specifically highlighted better alphanumeric recognition in GPT-Realtime-2.1 in July 2026. If you rely on diarization, confirm that the replacement for gpt-4o-transcribe-diarize covers your case before 2027.
Voice agents: speech-to-speech or cascade
Speech-to-speech. A single model takes audio in and answers with audio. GPT-Live-1 is full-duplex (it listens while speaking) and hands reasoning and tool use to a backend agent. It only runs on OpenAI's Live endpoint, and its rate limits are counted in concurrent sessions, from 25 at Tier 1 to 500 at Tier 5, with no free tier. Google positions Gemini 3.8 Live as the default Live API model for low-latency voice agents.
Cascade. Streaming STT, an LLM with tools and streaming TTS, each piece swappable. You gain control: you see the text of every turn, apply rules before anything is spoken and pick the best Spanish voice. You pay in latency and turn-taking engineering.
| Option | Architecture | Published price |
|---|---|---|
| GPT-Live-1 (OpenAI, Sept 10, 2026) | Full-duplex speech-to-speech, separate backend | $0.05/min, billed per second |
| gpt-realtime-2.1 and 2.1-mini (OpenAI, Jul 6, 2026) | Speech-to-speech on the Realtime API | $32 / $64 per 1M audio tokens (input / output); mini: $10 / $20 |
| Gemini 3.8 Live (Google, Sept 15, 2026) | Audio-to-audio on the Live API | About $0.005/min input and $0.018/min output |
| Cascade STT + LLM + TTS | Three swappable pieces | Sum of the three; more control per turn |
Our decision rule: if the conversation is open-ended and naturalness matters more than control, start with speech-to-speech. If there are transactions with personal data, business rules or audit needs, start with a cascade, or with a speech-to-speech model that delegates to a backend where you control tools and rules, which is what GPT-Live-1 proposes. More in AI agents in production.
Latency, turn-taking and interruptions
A budget per stage and five rules so the conversation doesn't sound robotic.
| Stage | Cascade | Speech-to-speech | What to measure |
|---|---|---|---|
| Network and input audio | 50–150 ms | 50–150 ms | Codec, jitter, 8 kHz or 16 kHz |
| End-of-turn detection | 200–500 ms | Inside the model | Mid-sentence cut-offs, long silences |
| Final transcript | 100–300 ms | n/a | Errors on numbers and names |
| LLM first token | 200–600 ms | n/a | With your real prompts and tools |
| First audio | 75–300 ms | 300–800 ms from end of turn | Time to first audio byte |
| Network and playback | 50–150 ms | 50–150 ms | Player buffer |
| Total to first syllable | 0.7–2.0 s | 0.4–1.1 s | p50 and p95 per call |
Barge-in and turn-taking
- Keep listening while the agent speaks, with echo cancellation.
- When the user interrupts, stop the audio and drop the unspoken part from the history: the model must know what the person heard.
- Don't count an 'uh-huh' or a cough as an interruption; tune the threshold on real recordings.
- Detect end of turn by meaning, not just silence: someone dictating a number pauses.
- Read critical data back (ID numbers, amounts, dates) and confirm before acting.
Budget and monitor latency at the 95th percentile, not the average, and raise a per-call alert when a turn exceeds your threshold.
AI music: models, lawsuits and licences
The market is moving from unlicensed training to licensed models, and courts are setting the pace.
| Player | Deals and licences | Litigation and key terms |
|---|---|---|
| Suno | Warner (Nov 2025), BMG (Aug 2026), Believe and TuneCore (Sept 2026); v6 launched Sept 9, 2026 | New Sony and Universal suit against v6 (Sept 18, 2026, 60,202 recordings cited); GEMA ruling in Munich; suits by Koda and SOCAN |
| Udio | Universal (Oct 2025) and Warner (Nov 2025), with a licensed platform announced for 2026 | Sony is still litigating: a second suit in July 2026 over about 30,000 more songs |
| Google Lyria 3.5 (Sept 3, 2026) | Filters block specific artists' voices and copyrighted lyrics | $0.08 per song on the API; SynthID on all audio |
| ElevenLabs (Eleven Music) | Multi-year deal with Universal (Sept 10, 2026) | Commercial use on paid plans, with limits by plan |
Suno sums up the moment. Its v6 was built with Warner, BMG and Believe, and the company is retiring all earlier models. Sony and Universal, which did not sign, claim v6 "launders" past infringement because it was trained partly on earlier models' outputs.
In Europe, the Munich Regional Court ruled on July 31, 2026 that Suno infringed by training on GEMA works without licences and by reproducing works that match famous songs in melody, harmony and rhythm.
If your brand uses generated music
- Use plans with explicit commercial rights: on Suno, Pro and Premier downloads carry them, while free downloads are for personal use only.
- Keep evidence for every campaign asset: tool, plan, date, prompt and file.
- Don't ask to imitate a specific artist or a recognizable voice.
- Expect distribution friction: Deezer says more than 50% of new uploads in June 2026 were fully AI-generated and removes them from recommendations.
Voice cloning: consent, watermarks and fraud
Voice cloning is now a product feature: since v5.5 (March 2026), Suno lets you record your own voice and reuse it in songs. The rule is explicit consent: a contract stating which voice, for which uses, in which languages, for how long and how it is revoked.
Since August 2, 2026, AI Act Article 50 requires synthetic audio to be marked in a machine-detectable way and audio deepfakes to be disclosed; the Commission's code of practice asks for signed metadata plus a watermark. NIST concluded that no single provenance or detection technique is enough on its own.
The FBI's IC3 2025 report counts more than $5 million lost to "distress" scams using cloned voices, and in a Kaspersky study published in September 2026, 31% of messaging-scam victims reported cloned or synthetic voices. Never use voice as an authentication factor. More in deepfake fraud.
Reference architecture and compliance: a Spanish-language voice agent
- Entry: SIP or WebRTC telephony with an opening notice: you are talking to an AI, the call is recorded, why, and how to reach a human.
- Engine: speech-to-speech or cascade, behind your own interface so you can switch vendors.
- Voice: STT and TTS chosen with your 50-sentence test in Colombian Spanish, and a brand voice under contract.
- Backend: an LLM with strict tools (CRM, orders, tickets), least privilege, spoken confirmation before any change, and defenses against prompt injection.
- Handoff: to a human, with a summary, when the user asks or after two failed attempts; identity is verified with a factor other than voice.
- Operations: p50 and p95 latency, a reviewed sample of transcripts, resolution rate without a human, and automatic deletion of recordings when the retention period ends.
Compliance
European Union. Since August 2, 2026, AI Act Article 50 requires telling people clearly, at the latest at the first interaction, that they are talking to an AI; fines reach €15 million or 3% of worldwide turnover, whichever is higher. A recording is personal data under the GDPR, and a voiceprint used to identify someone is special-category biometric data (Article 9), which in practice usually requires explicit consent. Using AI to infer your own employees' emotions has been prohibited since February 2025, except for medical or safety reasons.
Colombia. Law 1581 of 2012 requires prior, informed authorization that you can prove later (Article 9): store the notice and the acceptance with each call. Biometric data is sensitive (Articles 5 and 6) and needs explicit authorization, and sending audio to a processor abroad requires a data transmission contract (Decree 1074 of 2015) or, for a transfer, compliance with Article 26. There is no AI law in force yet, but Law 2502 of 2025 already makes AI impersonation an aggravating factor. Details in our 2026 regulatory map.
Key takeaways
- GPT-Live-1 (September 10, 2026) and Gemini 3.8 Live (September 15) bring speech-to-speech into production; GPT-Live-1 costs $0.05 per minute plus the backend.
- OpenAI removes whisper-1 and its gpt-4o transcription models on February 26, 2027: plan the migration and its cost.
- No leaderboard measures your Spanish or French: test TTS and STT with 50 hard sentences and blind listening.
- AI music is moving to licensed models, but Sony and Universal are still suing Suno, which lost to GEMA in Munich.
- Disclose the AI from the first sentence, get authorization to record and treat voiceprints as biometric data.
Sources
- API changelog
- GPT-Live-1 model page
- API pricing
- Gemini API changelog
- Gemini API pricing
- Models
- Introducing v6
- GEMA prevails over Suno
- Sony Music and Universal Music sue Suno over its label-backed model
- Article 50: transparency obligations for providers and deployers
- 2025 IC3 Annual Report
- Regulation (EU) 2016/679 (GDPR)
Editorial note: this analysis reflects the public information available on the review date. Models, prices and rules change fast; every third-party figure links to its source, and our opinions are labeled as such. Spotted an error? Write to contact@slash-digital.io.
The questions we hear often
What is GPT-Live-1?
An OpenAI voice model, generally available since September 10, 2026, that listens and speaks at the same time (full-duplex) and hands reasoning and tools to a backend agent. It costs $0.05 per minute, billed per second, with the backend paid separately.
Is speech-to-speech better than an STT, LLM and TTS cascade?
It depends on the use case. Speech-to-speech aims for more natural turns; a cascade gives more control and a text record of every turn. For transactions with personal data, start with a cascade or a speech-to-speech model that delegates to a backend you control, and measure p95 latency on your network.
What happens to Whisper on the OpenAI API?
OpenAI announced on August 26, 2026 that whisper-1, gpt-4o-transcribe, gpt-4o-mini-transcribe and gpt-4o-transcribe-diarize leave the API on February 26, 2027. The replacements are GPT Transcribe and GPT Live Transcribe, at $0.017 per minute.
Can I use Suno music in a campaign?
On a Pro or Premier plan, Suno's terms grant commercial rights to downloads; the free plan is for personal use only. Litigation risk remains: Sony and Universal sued over v6, and in the original case Suno admitted obtaining YouTube audio with yt-dlp. Also, in the US a prompt alone does not make the output copyrightable.
Do I have to say the agent is an AI?
In the EU, yes: AI Act Article 50 has required it since August 2, 2026, at the latest at the first interaction. Colombia has no AI law in force, but Law 1581 requires informed authorization to record and process data, and we recommend always disclosing it.
More analysis to read next
Deepfake fraud: a protocol for companies
From Arup's $25.6M loss to FBI figures: how cloned-voice and deepfake fraud works, and a verification protocol for finance, HR and executive assistants.
Agents and engineeringAI agents in production: what works in 2026
Workflow or agent, the eight building blocks, adoption and failure data, computer use, design rules, costs, security and a launch checklist.
Image, video and audioGenerative AI in live brand experiences and DOOH: what works
AI photobooths, face swaps and DOOH screens: latency, moderation, biometric consent, AI Act labelling and how to measure a live activation.
Where to next
Let's put it in production
Tell us your challenge. We reply within 24 business hours with an honest first read: if we can help, we'll say how; if not, we'll say who can.
I reply personally. No endless forms, no canned replies.