Ad
Skip to content

New open-source voice model listens nonstop and decides every 0.4 seconds whether to speak or stay silent

Image description
Nano Banana Pro prompted by THE DECODER

Key Points

  • The "Audio Interaction" AI model processes continuous audio streams and combines tasks such as dialog, translation, transcription and sound recognition in a single system.
  • To do this, it breaks down the audio stream into 0.4-second segments and decides after each segment via a special token whether it should remain silent or generate a response.
  • Trained with an artificial data set of 302,000 hours of audio, the model processes listening and speaking in parallel. This minimizes the waiting time for responses and allows the system to beat models such as Gemini 3 Flash in proactive noise detection tests.

Researchers want to close the gap between today's audio speech models and real listeners. Their system handles dialog, translation, and sound recognition all at once.

Today's audio voice models, like GPT-4o or Qwen 3.5-Omni, work like a dictation machine with a button: they only respond when the recording ends. Streaming systems like Moshi for dialog or Paraformer for live subtitles do listen in, but they can only handle one task at a time and treat sounds like coughing as background noise.

Researchers from China, Hong Kong, and Singapore want to combine both approaches with "audio interaction." The model listens to an audio stream continuously, breaks it into 0.4-second chunks, and decides after each chunk whether to stay silent or speak. Translation, transcription, chatting, and reacting to everyday noises all run in a single three-billion-parameter model.

One special token every 0.4 seconds

After each audio snippet, the model outputs either <silent> or <response>. If it picks <silent>, it keeps listening. Only with <response> does it start talking. Classic tasks like "Translate into English" become instructions within the same continuous stream.

Ad
DEC_D_Incontent-1

Overview of Audio-Interaction showing a spectrogram of a continuous audio stream and four application boxes for online instruction following, real-time transcription, voice chatting, and proactive intervention, where the model decides between silence and response.
The model listens to a continuous audio stream and decides moment by moment whether to stay silent or react, combining classical and streaming audio capabilities in one system. | Image: Xie et al.

According to the paper, Audio-Interaction scored 58.15 points on the audio benchmark MMAU, narrowly beating its base model Qwen2.5-Omni-3B. It also comes close to much larger 7B models. On English-Chinese translation, the model improves a lot over the base.

Diagram comparing specialized single-task models on the left for ASR, translation, and speech dialog with the unified Audio-Interaction model on the right, which uses an audio encoder, adapter, and language model to handle multiple tasks through a single stream.
Where previous systems each solve a task in a separate model, Audio-Interaction combines recognition, translation, dialog, and proactive response in a single streaming setup. | Image: Xie et al.

For the model to learn when to step in, the team needed the right training data. Existing audio datasets consist of short, isolated clips and lack long sequences with sparse response signals, the researchers say.

So they built their own scenes in three stages. First, a language model designed a plausible setting—say, a kitchen in the morning—with three to 15 sub-events. The system then searched a database for matching clips or had missing sounds like breaking glass created by audio models like AudioX or ElevenLabs. A preprocessing step then smoothed out the cut edges so the recordings sounded natural.

The resulting StreamAudio-2M dataset contains 2.6 million units and about 302,000 hours of audio across seven skill areas and 28 subtasks.

Ad
DEC_D_Incontent-2

Two recurring streaming problems

Two weaknesses kept showing up during training. First, the model forgot earlier content in long, noisy sequences. The fix: asking questions that point back to passages from much earlier in the audio, forcing the model to build up long-term memory.

Second, the model fired too often on sounds that didn't matter. The team countered this with large amounts of verified silence and background audio that's explicitly not supposed to trigger a response. On the newly introduced ProactiveSound Bench with 644 human-curated events the model beats Gemini 3 Flash, Kimi-Audio-Instruct, and Step-Audio 2, among others.

Timeline of a 30-second household scene where Audio-Interaction decides every 0.4 seconds whether to stay silent or react, including proactive warnings for a child crying, identifying Debussy's Clair de Lune, and alerting to shattering glass.
In a single everyday scene, the model runs through five of its seven task types, from proactive warnings to audio understanding and real-time translation. | Image: Xie et al.

A queue instead of a blocking pipeline

For real-time use, the researchers split incoming audio processing from response generation. Both run in parallel and swap data through a queue: the audio side keeps writing new chunks, and the response side only reads them when it has nothing to say. Without this split, time-to-first-response jumped from 392 to 831 milliseconds, and the system got stuck 5.2 percent of the time.

The 0.4-second chunk size is a tradeoff. At 0.2 seconds, there isn't enough context and the model falls apart in dialog. At 0.8 seconds, latency climbs to 786 milliseconds.

Training diagram of the SoundFlow framework with audio encoder, adapter, and model predicting special tokens for silence or response per 0.4-second chunk, shown across audio understanding, counting, simultaneous interpretation, and proactive intervention.
SoundFlow lines up the audio signal, intermediate representations, and control tokens in a time sequence, jointly training when the model talks and when it stays quiet. | Image: Xie et al.

Code and instructions for downloading the weights are on GitHub under the Apache 2.0 license, with no restrictions on commercial use. The full training dataset is set to follow later.

AI News Without the Hype – Curated by Humans

Subscribe to THE DECODER for ad-free reading, a weekly AI newsletter, our exclusive "AI Radar" frontier report six times a year, full archive access, and access to our comment section.

Source: Arxiv