The current era of large language model development has hit a wall of diminishing returns where simply adding parameters no longer guarantees a proportional leap in intelligence. For months, the developer community has shifted its focus from raw scale to architectural efficiency, searching for the sweet spot where a model can reason like a giant but run with the agility of a specialist. This tension between size and capability has defined the latest wave of open-source releases, as teams scramble to optimize inference costs without sacrificing the complex reasoning required for autonomous coding agents.
The Architecture of Efficiency
Thinking Machines, the startup led by former OpenAI CTO Mira Murati, has entered this fray with the release of Inkling-Small. This open-source model represents a significant pivot in scaling strategy, utilizing 276 billion parameters to match or exceed the intelligence of its predecessor, which boasted a massive 975 billion parameters. By focusing on efficiency over sheer volume, Thinking Machines has delivered a multimodal reasoning model capable of processing text, images, and audio inputs to generate text-based responses. To support complex, long-form projects, the model features a context window of up to 1 million tokens, ensuring that massive codebases or lengthy documents can be processed in a single session. The model is released under the Apache 2.0 license, allowing for unrestricted modification and commercial use.
While the total parameter count is high, the actual computational load is drastically lower. Inkling-Small employs a sparse Mixture-of-Experts (MoE) structure, meaning it does not activate its entire neural network for every request. During inference, the model only utilizes 12 billion active parameters per token. This selective activation allows the model to maintain a vast internal knowledge base while keeping the actual mathematical operations per token lean, effectively optimizing both inference speed and energy consumption.
The Trade-off Between Logic and Knowledge
The shift to a sparse MoE architecture has created a distinct performance profile that favors logic over rote memorization. In coding benchmarks, the results are definitive. Inkling-Small recorded an 80.2% success rate on SWE-bench Verified, comfortably surpassing the 77.6% achieved by the original, larger Inkling model. It also demonstrated superior performance on Terminal Bench 2.1, scoring 64.7% and edging out other top-tier models that peaked at 63.8%. This suggests that the model has become more adept at the structural and logical demands of software engineering.
However, this gain in reasoning comes with a specific cost. When tested on factual knowledge benchmarks such as $\tau^3$-Banking or certain agentic tasks, the original Inkling model still holds the advantage. The reduction in total parameters and the reliance on sparse activation mean the model has effectively traded some of its encyclopedic storage for enhanced cognitive processing. It is less of a general-purpose library and more of a specialized engineer.
This performance distribution is a direct result of the MoE routing mechanism. The model consists of 42 decoder layers that route each input token to a specific subset of experts. Specifically, the system selects 6 experts from a pool of 256 specialized experts, while simultaneously utilizing 2 shared experts that remain active for all tokens. This routing process ensures that the most relevant neural pathways are engaged for a given problem, maximizing expertise in coding and reasoning while minimizing the waste of computational resources on irrelevant data.
Despite these efficiencies, Inkling-Small remains far beyond the reach of consumer hardware. The memory requirements for the BF16 checkpoint are steep, requiring a minimum of 600GB of GPU memory to operate. Even when utilizing the NVFP4 compressed version, the model demands approximately 180GB of VRAM. These specifications render the model unusable on standard laptops, MacBooks, or high-end gaming PCs. It is a tool designed exclusively for enterprise-grade GPU servers and cloud clusters.
For organizations with the necessary infrastructure, the model offers a path to total data sovereignty. A company utilizing four B300 GPUs or eight H200 GPUs can host the BF16 version internally, while those with a single B300 or two H200 GPUs can deploy the NVFP4 version. By reducing the operational overhead and inference costs associated with the original 975B parameter model, Thinking Machines has lowered the barrier for enterprises to deploy high-reasoning AI agents on their own hardware.
Inkling-Small transforms the enterprise GPU server from a mere hosting platform into a high-efficiency reasoning engine.




