Thinking Machines Lab Releases Inkling, Its First Model, as Open Weights
Thinking Machines Lab released Inkling, its first model: a mixture-of-experts transformer with 975 billion total parameters, a 1 million token context, and open weights on Hugging Face.
Thinking Machines Lab, the research company founded by former OpenAI CTO Mira Murati, shipped its first model on 15 July 2026. It is called Inkling, and the notable choice is that the lab released it as open weights rather than behind an API. A new, well-funded frontier lab entering on the open side strengthens the case that open-weight models can sit at the frontier, not a step behind it.

What happened
Per the lab’s announcement, Inkling is a mixture-of-experts transformer:
- 975 billion total parameters, about 41 billion active per token (256 routed experts plus 2 shared, 6 active per token). A mixture-of-experts design keeps inference cost tied to the active parameters, not the total.
- Up to a 1 million token context window.
- Pretrained on 45 trillion tokens across text, image, audio, and video.
- Released as open weights on Hugging Face, under the Apache 2.0 license.
Why it matters for builders
The open-weight tier keeps gaining serious entrants. Inkling joins DeepSeek-V4 and other open families as a frontier-scale model you can download, inspect, fine-tune, and self-host. For teams that need data residency, offline deployment, or independence from a single vendor’s pricing and availability, each new open release widens the set of options that are genuinely frontier-adjacent rather than a compromise.
As always, “open weights” is the start of the evaluation, not the end. Check the license terms for how you are allowed to use and redistribute the model, confirm the hardware you would need to serve 41 billion active parameters at your latency target, and run your own evaluations rather than trusting a launch benchmark. A first model from a new lab is promising, but promise is not production evidence.
Sources
- Thinking Machines Lab, “Introducing Inkling”: https://thinkingmachines.ai/news/introducing-inkling/
Further reading
- DeepSeek releases V4 open-weight models : another leading open-weight family.
- The 2026 LLM landscape : how open and closed models compare.
- What is a mixture of experts? : why a 975B model can be affordable to run.