# Mira Murati's Interaction Model: Full-Duplex AI at 0.4 Seconds _Thinking Machines Lab's TML-Interaction-Small processes audio and video in 200ms chunks, responds in 0.4 seconds, and runs full-duplex without a VAD harness. Here is how the architecture works and what Murati said at Bloomberg Tech._ **Published:** 2026-06-19 **Source:** https://www.startuphub.ai/ai-news/ai-figures/2026/figure-mira-murati-interaction-models-launch-2026-06-19 --- **On May 11, 2026, Thinking Machines Lab released TML-Interaction-Small in research preview, a 276-billion-parameter model that processes audio, video, and text in continuous 200-millisecond chunks and returns a response in 0.40 seconds, matching the typical gap between human conversational turns, according to the company’s technical disclosure reported by [MarkTechPost on May 13, 2026](https://www.marktechpost.com/2026/05/13/mira-muratis-thinking-machines-lab-introduces-interaction-models-a-native-multimodal-architecture-for-real-time-human-ai-collaboration/).** Quick context Mira Murati served as chief technology officer at OpenAI until September 2024, then co-founded Thinking Machines Lab in February 2025 with chief scientist John Schulman and four other OpenAI alumni. [The lab secured a $2 billion seed round at a $12 billion valuation in July 2025](https://www.startuphub.ai/ai-news/ai-figures/2026/figure-mira-murati-company-financial-breakdown-2026-06-02), the largest seed round on record per TechCrunch, and TML-Interaction-Small is its first published model. ## A New Category: What “Interaction Models” Actually Are “Interaction models” is the term Thinking Machines Lab uses for systems built from scratch to treat real-time conversation as a first architectural principle, not a capability retrofitted onto a text-based foundation. The distinction matters because most voice AI deployed today is exactly that: a large language model with a speech-to-text front end and a text-to-speech back end, coordinated by voice-activity detection software. Murati’s team discarded the VAD layer entirely. TML-Interaction-Small is a mixture-of-experts model with 276 billion total parameters, of which 12 billion are active at inference time. The model processes incoming audio, video, and text as a continuous stream divided into 200-millisecond chunks. Each chunk is processed as it arrives rather than after the user finishes speaking. [Semafor reported on May 13, 2026](https://www.semafor.com/article/05/13/2026/mira-muratis-thinking-machines-previews-interaction-models) that the model reached 0.40 seconds of end-to-end response latency, roughly equivalent to the beat a speaker leaves before replying in ordinary conversation. The MoE design keeps compute costs tractable despite the large total parameter count. At 12 billion active parameters per forward pass, TML-Interaction-Small sits in a similar inference-compute tier to other deployed mixture-of-experts systems, while the 276 billion total parameters provide the representational breadth that continuous multimodal processing demands. ![](https://quickchart.io/chart?width=700&height=350&bkg=white&c=%7B%22type%22%3A%22bar%22%2C%22data%22%3A%7B%22labels%22%3A%5B%22Total%20Parameters%22%2C%22Active%20Parameters%20%28MoE%29%22%5D%2C%22datasets%22%3A%5B%7B%22label%22%3A%22Billions%22%2C%22data%22%3A%5B276%2C12%5D%2C%22backgroundColor%22%3A%5B%22%236366f1%22%2C%22%23818cf8%22%5D%7D%5D%7D%2C%22options%22%3A%7B%22indexAxis%22%3A%22y%22%2C%22plugins%22%3A%7B%22legend%22%3A%7B%22display%22%3Afalse%7D%2C%22title%22%3A%7B%22display%22%3Atrue%2C%22text%22%3A%22TML-Interaction-Small%3A%20Parameter%20Scale%22%7D%7D%2C%22scales%22%3A%7B%22x%22%3A%7B%22title%22%3A%7B%22display%22%3Atrue%2C%22text%22%3A%22Billions%20of%20parameters%22%7D%7D%7D%7D%7D) TML-Interaction-Small parameter scale: 276B total, 12B active via mixture-of-experts routing. Source: MarkTechPost, May 2026. ## How TML Differs From Turn-Based Voice Models The operational gap between TML-Interaction-Small and most deployed voice AI is the distinction between full-duplex and half-duplex conversation. Standard voice models operate on a turn-completion model: the system waits for the user to stop speaking, then processes the full utterance and generates a reply. Interrupting the model mid-response typically forces a restart of the generation cycle, adding several hundred milliseconds to the next exchange. TML-Interaction-Small is full-duplex. The interaction model listens and generates simultaneously rather than alternating. If a user cuts into a response mid-sentence, the system can acknowledge and redirect without resetting the full generation cycle. [The AI Insider reported on May 12, 2026](https://theaiinsider.tech/2026/05/12/mira-muratis-thinking-machines-lab-unveils-full-duplex-ai-that-responds-in-0-4-seconds/) that Murati’s team describes this as “micro-turn” processing, where turn boundaries are computed continuously rather than detected at the end of an utterance. The internal architecture runs two components in parallel. A lightweight interaction model runs persistently in the foreground, tracking all audio, video, and text streams and maintaining conversational state. A heavier background model handles longer-horizon reasoning and tool use asynchronously, sharing full conversation context with the foreground model throughout. The background component offloads complex reasoning without introducing the latency penalty that would come from routing every exchange through a full reasoning pass. ![](https://quickchart.io/chart?width=700&height=350&bkg=white&c=%7B%22type%22%3A%22bar%22%2C%22data%22%3A%7B%22labels%22%3A%5B%22Audio%20chunk%20size%22%2C%22Response%20latency%22%5D%2C%22datasets%22%3A%5B%7B%22label%22%3A%22Milliseconds%22%2C%22data%22%3A%5B200%2C400%5D%2C%22backgroundColor%22%3A%5B%22%238b5cf6%22%2C%22%236366f1%22%5D%7D%5D%7D%2C%22options%22%3A%7B%22plugins%22%3A%7B%22legend%22%3A%7B%22display%22%3Afalse%7D%2C%22title%22%3A%7B%22display%22%3Atrue%2C%22text%22%3A%22TML-Interaction-Small%3A%20Timing%20Pipeline%20%28ms%29%22%7D%7D%2C%22scales%22%3A%7B%22y%22%3A%7B%22title%22%3A%7B%22display%22%3Atrue%2C%22text%22%3A%22Milliseconds%22%7D%7D%7D%7D%7D) TML-Interaction-Small timing pipeline: 200ms processing chunks, 0.40s (400ms) total response latency. Source: MarkTechPost, Semafor, May 2026. ## Bloomberg Tech, the Nvidia Deal, and What Comes Next On June 4, 2026, Murati made her first major public appearance in roughly 18 months, speaking at Bloomberg Technology’s annual conference in San Francisco. In an interview with Bloomberg’s Emily Chang, she described the human-AI relationship using a tandem bicycle analogy, arguing that both parties must steer and contribute momentum together rather than one directing while the other reacts, per [TechCrunch’s June 4 report](https://techcrunch.com/2026/06/04/mira-murati-steps-back-into-the-spotlight-carefully/). Three months earlier, in March 2026, Nvidia announced a multiyear chip supply agreement with Thinking Machines, committing to provide Vera Rubin accelerators as production capacity comes online. The deal is supply-chain insurance: without a direct GPU allocation from Nvidia, a lab operating at TML’s scale would face compute constraints that could slow the move from research preview to general availability. [Bloomberg’s June 4 interview](https://www.bloomberg.com/news/videos/2026-06-04/thinking-machines-murati-on-ai-s-next-chapter-video) noted that funding discussions pegging TML at up to $50 billion in valuation were active, consistent with a [Bloomberg report from November 13, 2025](https://www.bloomberg.com/news/articles/2025-11-13/murati-s-thinking-machines-in-funding-talks-at-50-billion-value) that first surfaced that figure. Access to TML-Interaction-Small remains limited to a curated group of research partners as of June 2026, with no public launch date announced. The lab has not published benchmark comparisons against competing voice models, making independent latency verification difficult until broader access is available. ![](https://quickchart.io/chart?width=700&height=350&bkg=white&c=%7B%22type%22%3A%22line%22%2C%22data%22%3A%7B%22labels%22%3A%5B%22Founded%20%28Feb%202025%29%22%2C%22Seed%20Round%20%28Jul%202025%29%22%2C%22Funding%20Talks%20%28Nov%202025%29%22%5D%2C%22datasets%22%3A%5B%7B%22label%22%3A%22Valuation%20%28%24B%29%22%2C%22data%22%3A%5B0%2C12%2C50%5D%2C%22backgroundColor%22%3A%22rgba%2899%2C102%2C241%2C0.2%29%22%2C%22borderColor%22%3A%22%236366f1%22%2C%22fill%22%3Atrue%2C%22tension%22%3A0.4%7D%5D%7D%2C%22options%22%3A%7B%22plugins%22%3A%7B%22title%22%3A%7B%22display%22%3Atrue%2C%22text%22%3A%22Thinking%20Machines%20Lab%3A%20Valuation%20Arc%22%7D%7D%2C%22scales%22%3A%7B%22y%22%3A%7B%22title%22%3A%7B%22display%22%3Atrue%2C%22text%22%3A%22Valuation%20%28%24B%29%22%7D%7D%7D%7D%7D) Thinking Machines Lab valuation arc: $12B at July 2025 seed round; in discussions at up to $50B as of November 2025. Sources: TechCrunch July 2025, Bloomberg November 2025. ## What It Means Murati’s thesis is that voice AI built on top of text models has a structural ceiling in conversational quality, and that closing that gap requires different architecture rather than better prompting or faster inference hardware. TML-Interaction-Small is the first published evidence that Thinking Machines Lab has an executable version of that thesis. [Anthropic](https://www.startuphub.ai/ai-news/ai-figures/2026/figure-dario-amodei-company-financial-breakdown-2026-06-14) and [OpenAI](https://www.startuphub.ai/ai-news/ai-figures/2026/figure-sam-altman-public-position-evolution-2026-06-13) are not standing still on real-time voice; the question is whether native multimodal architecture from day one delivers a durable advantage, or whether incremental improvements to existing systems close the gap before TML moves from research preview to general availability. ## Sources - ![](https://www.google.com/s2/favicons?domain=semafor.com&sz=32) [Semafor: Mira Murati's Thinking Machines previews ‘interaction models’](https://www.semafor.com/article/05/13/2026/mira-muratis-thinking-machines-previews-interaction-models) - ![](https://www.google.com/s2/favicons?domain=marktechpost.com&sz=32) [MarkTechPost: Thinking Machines Lab Introduces Interaction Models](https://www.marktechpost.com/2026/05/13/mira-muratis-thinking-machines-lab-introduces-interaction-models-a-native-multimodal-architecture-for-real-time-human-ai-collaboration/) - ![](https://www.google.com/s2/favicons?domain=theaiinsider.tech&sz=32) [The AI Insider: Thinking Machines Lab Unveils Full-Duplex AI That Responds in 0.4 Seconds](https://theaiinsider.tech/2026/05/12/mira-muratis-thinking-machines-lab-unveils-full-duplex-ai-that-responds-in-0-4-seconds/) - ![](https://www.google.com/s2/favicons?domain=techcrunch.com&sz=32) [TechCrunch: Mira Murati’s Thinking Machines Lab is worth $12B in seed round](https://techcrunch.com/2025/07/15/mira-muratis-thinking-machines-lab-is-worth-12b-in-seed-round/) - ![](https://www.google.com/s2/favicons?domain=bloomberg.com&sz=32) [Bloomberg: Murati’s Thinking Machines in Funding Talks at $50 Billion Value](https://www.bloomberg.com/news/articles/2025-11-13/murati-s-thinking-machines-in-funding-talks-at-50-billion-value) - ![](https://www.google.com/s2/favicons?domain=techcrunch.com&sz=32) [TechCrunch: Mira Murati steps back into the spotlight, carefully](https://techcrunch.com/2026/06/04/mira-murati-steps-back-into-the-spotlight-carefully/) - ![](https://www.google.com/s2/favicons?domain=bloomberg.com&sz=32) [Bloomberg: Thinking Machines’ Murati on AI’s Next Chapter (video)](https://www.bloomberg.com/news/videos/2026-06-04/thinking-machines-murati-on-ai-s-next-chapter-video) Editorial standards: every claim is sourced. Tips: editor@startuphub.ai --- Original analysis from [startuphub.ai](https://www.startuphub.ai), the #1 AI startup directory.