Skip to content
Putting technology to work.
Insights to guide decisions and action.

Search articles

Building 70-language voice customer experiences with Gemini 3.1 Flash TTS — A new model for inbound and call center client development

Table of contents · 6 items

"We want to set up a multilingual call center for inbound tourists, but securing operators is impossible," "We can build an English IVR, but Spanish, Tagalog, and Vietnamese are out of reach"—along with the rebound in inbound tourism, inquiries like these have noticeably surged since February.

The answer to this demand may lie in Gemini 3.1 Flash TTS, released by Google on April 16. Supporting over 70 languages, it enables natural voice generation with emotional expression at low latency and low cost. In this article, we organize implementation patterns and cost estimates when incorporating it into custom development.

Three features of Flash TTS

Compared to traditional cloud TTS services, Flash TTS stands out in the following three areas.

  1. Support for 70 languages: Broadly covers Japanese, English, and Chinese, as well as major Asian languages such as Tagalog, Swahili, Thai, Vietnamese, and Hindi
  2. Control over emotional expression: Speaking styles can be specified using excited, calm, and apologetic, producing voices tailored to brand tone
  3. Low latency: Consistently delivers time-to-first-audio under 300 ms, making it viable for real-time phone responses

This marks the point where the evolution of the Gemini family, which we tracked in the trend of the Gemini app replacing Google Assistant, has finally expanded into the voice infrastructure layer.

Application scenarios: Ready models for client development

Scenario 1: Multilingual IVR (interactive voice response)

A setup that takes incoming telephone inquiries from inbound tourists, automatically detects the language, and returns response audio via Flash TTS.

[1] 着信 → 「Please press 1 for English, 2 for 日本語, ...」
[2] 音声認識で言語判定(Gemini 3.1 の ASR)
[3] FAQ 検索 → 該当言語で Flash TTS 生成 → 再生
[4] 解決しない場合のみ、英語 or 日本語オペレーターへエスカレーション

Because it can reduce operator workload by 60% to 80%, 24-hour coverage can be assembled at a realistic cost.

Scenario 2: Audio guides for tourist destinations

A configuration where visitors scan a QR code to open a web app and instantly generate commentary on the cultural property they are viewing in their own language. This eliminates the need to prepare pre-recorded audio files in multiple languages.

Scenario 3: Voice commerce (smart speakers and in-vehicle systems)

A user experience that completes product searches, recommendations, and purchase confirmations entirely through conversational audio. With Flash TTS's emotional expression, you can switch between a bright tone for recommending products and a calm tone for confirmation messages.

Scenario 4: Multilingual announcements for hospitals and public facilities

Waiting number announcements automatically switch based on the language setting configured at registration. This is an area that local governments and medical institutions cannot solve through staffing alone.

Implementation patterns: The battle against audio latency

To create an experience that feels seamless even during telephone calls, a latency budget must be established from the design phase.

ProcessTarget latencyMethod
Speech recognition200msGemini 3.1 ASR + streaming
Intent understanding + answer generation500msCaching + simple intent classification
TTS generation300msFlash TTS streamed output
TotalWithin 1,000 msFeels natural for a phone call

In particular, designing the TTS side to stream sequentially from the beginning of each sentence cuts perceived wait time in half.

Brand tone control

Explicitly specify emotion, speed, and speaker gender via prompts.

{
  "model": "gemini-3.1-flash-tts",
  "voice": {
    "name": "ja-JP-Standard-Female-01",
    "style": "calm_professional",
    "pace": "slow"
  },
  "text": "お電話ありがとうございます。GleamHub サポートです。..."
}

Unnatural delivery, such as sounding overly cheerful or mechanical, can be improved by 90% simply through combinations of style and pace.

Cost estimate: IVR at a scale of 100,000 calls per month

Assuming 100,000 calls per month (averaging 2 minutes across 5 languages) as an alternative to an inbound customer call center.

ItemMonthly
ASR (speech recognition) 200,000 minutesApprox. 400,000 JPY
LLM inference (Gemini 3.1)Approx. 300,000 JPY
TTS (Flash TTS) output audio 200,000 minutesApprox. 600,000 JPY
Twilio call chargesApprox. 800,000 JPY
TotalApprox. 2,100,000 JPY/month

In contrast, human operators for 5 languages across 3 shifts run 9,000,000 to 12,000,000 JPY per month. The reduction is 7,000,000 to 9,900,000 JPY per month, representing a cost transformation approaching nearly 100 million JPY annually.

Three pitfalls during implementation

  1. Handling dialects and accents: Dialects like Kansai-ben or Okinawan are generated in standard Japanese, so compensate in prompts when dialect support is required
  2. Pronunciation of proper nouns: Brand names and place names will falter unless locked down using pronunciation dictionaries
  3. Legal regulations: Certain countries mandate advance disclosure when using AI voices, requiring verification during global rollouts

The principle of "designing to clearly disclose that it is an AI," which we wrote about in our article on AI agent transparency and UX, is equally critical for voice.

Summary — An era where language barriers no longer require hiring solutions

In areas where multilingual support cannot be solved by manual labor alone, such as tourist sites, healthcare, government, and retail, Flash TTS serves as a structural solution. Shifting the mindset away from adding operators toward redesigning primary responses with AI voice is accelerating on the ground in 2026.

If you are looking to build an inbound call center or turn multilingual tourist guidance into an app, please feel free to reach out via our contact form.

Share this articleXFacebook
Kakeru Suzuki

Fascinated by the possibilities of technology, has had a deep interest in programming and digital art since student days

Turn this article's theme into your company's next step

Thinking together, starting from the work you entrust to AI.

We organize your current operations and data to define the scope entrusted to AI, what humans should review, and how to run trials.

  • Target operations
  • Data to use
  • How to verify effectiveness
Consult on AI adoption for your business

You can consult with us from the initial conceptual stage. Details from this article will be carried over to the inquiry form.

Receive the latest articles by email