Inclusion AI's Ming Realtime Model: Full-Duplex Voice AI, Tested Locally
Inclusion AI's Ming realtime model claims full-duplex voice and vision understanding. Here's how it runs locally, its VRAM needs, and how it performs.

What is Inclusion AI’s real-time omni model?
Inclusion AI, working with Tsinghua University, has released a full-duplex voice and vision model that claims to listen while it talks, react to what it sees on screen, and hand off longer tasks to background processes without breaking conversation flow. It’s a 9 billion parameter system built by combining existing open models rather than training everything from scratch: MiniCPM 4.5 as the 1.38 billion parameter language backbone, SigLip 2 for vision, and Whisper medium for audio. It runs locally on roughly 26GB of VRAM, and early hands-on testing shows real progress but also a gap between the marketing claims and what actually ships in the public repo.
TL;DR
- Inclusion AI’s real-time model is a 9 billion parameter full-duplex system stitched together from MiniCPM 4.5, SigLip 2, and Whisper medium rather than one model trained end to end.
- It ships as two separate checkpoints, one handling audio plus video and one handling audio only, so you pick the mode based on whether visual input matters for your use case.
- Running the full setup locally requires about 26GB of VRAM inclusive, which puts it out of reach of most consumer laptops but comfortably within range of a single high-end GPU like an RTX 4090 or A6000.
- The architecture splits into two loops, an interaction loop that handles live speech and video in real time, and a capability loop meant to dispatch longer tasks like search or tool calls to a background harness.
- That background harness isn’t included in the public repository, so the “delegates to background tasks without interrupting conversation” claim can’t currently be verified or tested by outside users.
- In live voice testing, the model answered questions, held a basic back-and-forth, and even attempted a song request, but responses showed rough edges including occasional Chinese-language leakage and answers that missed the point of nuanced or unusual prompts.
- The offline audio-in, audio-out pipeline worked as a batch process, but the response accent and phrasing suggested the underlying language model still needs tuning for natural English delivery.
Plans first. Then code.
Remy writes the spec, manages the build, and ships the app.
How does the full-duplex architecture actually work?
The system is described as two loops running side by side. The first is the interaction loop: your speech, any video feed, and text all flow into the model continuously, and the model can respond over the same channel without waiting for you to finish talking or for it to finish its own turn. That’s what “full duplex” means here, in contrast to typical voice assistants that operate in strict turn-taking mode where the mic has to be closed before the model responds.
The second is the capability loop, which is supposed to handle anything that takes longer than a quick reply, things like web search, tool calls, or multi-step agent tasks. According to Inclusion AI’s design, these get dispatched to a harness, tracked through states like queued, running, completed, and delivered, and then folded back into the live conversation once finished, all without freezing the ongoing exchange.
That’s the theory. In practice, the harness that powers the capability loop isn’t part of the public repository. That means the half of the architecture responsible for background task delegation, arguably the most novel claim in the pitch, can’t currently be tested by anyone running the model outside of Inclusion AI’s own infrastructure.
What are the VRAM and hardware requirements?
Running the model locally, including the vision and audio components alongside the language backbone, consumes just over 26GB of VRAM. That’s a meaningful number for anyone planning a local setup. It rules out most consumer GPUs with 12GB or 16GB of memory, but it fits within a single 24GB card if you’re careful about overhead, and it runs comfortably on higher-VRAM cards like a 32GB or 48GB professional GPU.
The model comes in two checkpoints: an Omni version that handles both audio and video input, and an Audio-only version for when visual context isn’t needed. Choosing the audio-only checkpoint would presumably reduce memory overhead somewhat, though the 26GB figure reported here reflects the full omni setup with video understanding included.
For builders thinking about deployment, this VRAM footprint places the model solidly in “single workstation GPU” territory rather than something you’d run on a laptop or edge device. It’s accessible for hobbyists with the right hardware, but it’s not a lightweight model by any stretch.
Does the real-time voice interaction actually work?
Yes, with caveats. In hands-on testing using a simple GUI built around Inclusion AI’s own example script, the model handled basic conversational turns: greetings, answering “what’s your name,” and responding to open-ended requests like being asked to sing a song. It picked a song, asked a clarifying question, and kept the conversational thread going in a way that felt closer to a real dialogue than a rigid command-response loop.
The rough edges showed up around specificity and precision. When given a long, unusual, and deliberately awkward prompt about a neighbor situation, the model’s response was generic advice that missed most of the nuance in the question. It’s the kind of answer that sounds plausible on the surface but doesn’t demonstrate strong comprehension of the specific scenario described.
There was also a noticeable delay in the “real-time” exchange, and in the offline audio-to-audio test, the response opened with what sounded like Chinese before switching to English with a notable accent. That’s consistent with a model built on components where the language layer (MiniCPM 4.5’s 1.38 billion parameter backbone) is relatively small and likely trained with a bilingual or multilingual dataset skewed toward Chinese.
None of this means the model doesn’t work. It means the “full duplex, real-time, proactive” framing oversells the current polish. The core mechanics function: you can talk, it listens, it responds, and it doesn’t require you to press a button between every turn. But the fluency and precision gap between this and something like a commercial voice assistant is still real.
Is this model worth running locally?
For developers curious about full-duplex voice architectures, yes, it’s worth experimenting with. It’s a rare case of an open model attempting simultaneous listen-and-speak behavior rather than the strict turn-based pipelines most open-source voice assistants use. Seeing that architecture in action, even in a rough state, is useful for understanding where this category of model is headed.
For anyone expecting a polished, production-ready assistant, the answer is more cautious. The background task delegation claim can’t currently be verified because the harness code isn’t public. The conversational quality, while functional, includes language leakage and generic responses to specific questions. And the 26GB VRAM requirement means it’s not something most people can casually spin up without dedicated hardware.
Treat it as a research preview or an architecture demonstration rather than a finished product. The underlying idea, combining a lightweight language backbone with strong vision and audio encoders into one duplex system, is a sound direction. Execution still has a way to go before the claims in the release notes match what you experience in a live conversation.
Frequently Asked Questions
What models make up Inclusion AI’s real-time system?
It combines MiniCPM 4.5 (a 1.38 billion parameter language model) as the backbone, SigLip 2 for vision understanding, and Whisper medium for audio processing, unified into one 9 billion parameter full-duplex system.
How much VRAM do you need to run it locally?
Running the full omni setup, including audio and video understanding, uses roughly 26GB of VRAM. That fits on a single high-VRAM consumer or workstation GPU but exceeds what most standard consumer cards offer.
Is the background task delegation feature actually usable?
Not currently. The architecture describes a “capability loop” that dispatches longer tasks like search or tool calls to a background harness, but that harness isn’t included in the public repository, so it can’t be independently tested.
Does the model actually support full-duplex conversation?
It supports simultaneous listening and speaking in the sense that you don’t need to wait for a strict turn-based exchange, and early testing confirms basic conversational back-and-forth works. Response quality and precision on nuanced prompts still lag behind more polished commercial voice assistants.
What’s the difference between the two checkpoints?
Remy is new. The platform isn't.
Remy is the latest expression of years of platform work. Not a hastily wrapped LLM.
The Omni checkpoint handles both audio and video input for full audio-visual understanding, while the Audio-only checkpoint processes speech without any visual component, useful if your use case doesn’t require screen or camera awareness.