Running Thinking Machines' Inkling without a datacenter

Thinking Machines shipped a 975B open model, and almost nobody can run the full thing
Thinking Machines Lab, Mira Murati's company, released Inkling on July 15, 2026. It is a mixture of experts transformer with 975 billion total parameters and 41 billion active per token, Apache 2.0 licensed, trained on 45 trillion tokens across text, image, audio, and video, with a context window up to 1 million tokens. Weights are on Hugging Face. Full detail is on the model card and the launch post.
That is the frontier-scale story. The story that matters if you are one person shipping product is different: what do you actually do with a 975B model on a single builder's budget. Before you sink an afternoon into it, browse live demand signals like this one to see whether the gap you're chasing is already validated by real threads, or whether you're about to rebuild something that already exists.
Thinking Machines itself is upfront that Inkling is not trying to win a leaderboard fight. Per the TechCrunch coverage of the launch, the company says Inkling is "not the strongest overall model available today, open or closed," and frames it as a starting point for fine-tuning rather than a finished frontier product. On select benchmarks at full reasoning effort (effort=0.99): AIME 2026 at 97.1%, GPQA Diamond at 87.2%, SWEBench Verified at 77.6%, MMMU Pro at 73.5%, and VoiceBench at 91.4%. Those are real numbers, and they're respectable, but the number that actually decides whether you can use this thing is the parameter count.
The size problem: open weights doesn't mean your laptop
975B total parameters at BF16 needs about 1.9TB of disk and roughly 2TB of aggregate VRAM to serve, which in practice means 8x NVIDIA B300 or 16x H200 GPUs. That is a cluster, not a workstation. The NVFP4 quantized checkpoint Thinking Machines shipped alongside it cuts that to 600GB of VRAM, running on 4x B300 (W4A4) or 8x H200 (W4A16), and it needs Blackwell FP4 tensor cores specifically, so older GPUs don't help.
Unsloth published dynamic GGUF quants that go further, down to a genuinely runnable range:
| Quant | Disk size | RAM+VRAM needed | Accuracy retained |
|---|---|---|---|
| 1-bit (UD-IQ1_S) | 270GB | 280 to 295GB | 74.2 to 77.4% |
| 2-bit | 317GB | 325GB | 81.0% |
| 4-bit | roughly 500GB | 600GB | 94.4% |
| 6/8-bit | roughly 800GB | 870GB | 99.8% |
| BF16 full | 1.9TB | 1,900GB | 100% |
The 1-bit quant is the one a solo builder could plausibly own hardware for: a single machine with 280 to 295GB of combined system RAM and VRAM. In practice that means either a used Mac Studio M3 Ultra with 512GB of unified memory, or a Linux box with 256 to 384GB of system RAM plus a couple of GPUs for offload.
Here's the current wrinkle: Apple pulled the 512GB configuration from the Mac Studio lineup in March 2026 due to a DRAM shortage, and the new-purchase ceiling is now 256GB, with the 256GB upgrade itself priced at $2,000. If you want a new Mac at the 512GB tier for this, you're buying used. That single supply change moved the realistic self-host path for a lot of solo builders from "order it today" to "check eBay."
Actually downloading and running it
Pull the model with the standard Hugging Face tooling:
pip install huggingface_hub
hf download unsloth/Inkling-GGUF \
--local-dir ./inkling-gguf \
--include "*UD-IQ1_S*"
That grabs the 270GB dynamic 1-bit quant, split across shards. Build llama.cpp against the Inkling support branch and run it:
git clone https://github.com/ggml-org/llama.cpp
cd llama.cpp && cmake -B build && cmake --build build --config Release -j
./build/bin/llama-cli \
--model ./inkling-gguf/UD-IQ1_S/inkling-UD-IQ1_S-00001-of-00007.gguf \
--temp 1.0 --top-p 1.0 --min-p 0.0
If you have real GPU hardware (the 600GB NVFP4 tier), vLLM has day-zero support:
vllm serve thinkingmachines/Inkling \
--quantization nvfp4 \
--tensor-parallel-size 8 \
--max-model-len 262144
None of these three paths is a laptop workflow. That's the honest read on the full-size model: open weights, real Apache 2.0 freedom to fine-tune and redistribute, but the hardware floor is still a serious rig or a rented cluster.
The path that's actually usable today: Tinker and Inkling-Small
Two things make Inkling usable for a one-person team without buying hardware.
First, Thinking Machines' own Tinker platform serves the model with same-day fine-tuning, so you can adapt Inkling to your domain without owning a single GPU. Pricing at 64K context: $1.87 per million prefill tokens, $4.68 per million sample tokens, both at a 50% launch discount, with training at $5.61 per million tokens. It's also live on Together, Fireworks, Modal, Databricks, and Baseten, so if Tinker's pricing or limits don't fit, you have four other places to point an API key.
curl https://api.fireworks.ai/inference/v1/chat/completions \
-H "Authorization: Bearer $FIREWORKS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "thinkingmachines/inkling",
"messages": [{"role": "user", "content": "summarize this changelog"}],
"max_tokens": 512
}'
Second, Inkling-Small: a 276B total, 12B active parameter preview from the same training recipe, which Thinking Machines says matches or beats full Inkling on several benchmarks. It hasn't shipped full weights as of July 17, 2026, so there's no published GGUF size yet. Do the math yourself: scale the big model's 270GB dynamic 1-bit quant by the parameter ratio (276B / 975B) and you land around 76GB, small enough for a single high-VRAM workstation once quants exist. That's an estimate from the ratio, not a confirmed number, so don't plan a purchase around it until Unsloth or a similar group publishes the real quant.
When self-hosting actually pays off
Run the math against your own volume before you buy anything.
# rough monthly cost at 50M input + 20M output tokens/month
# Inkling on Fireworks: (50 * 1.87) + (20 * 4.68) = $93.50 + $93.60 = $187.10/mo
# Claude Sonnet 5 (intro pricing): (50 * 2.00) + (20 * 10.00) = $100 + $200 = $300/mo
echo "inkling hosted: ~\$187/mo | sonnet 5 hosted: ~\$300/mo at this volume"
At moderate volume, hosted Inkling already undercuts hosted Sonnet 5 on the API bill alone, mostly because output tokens are less than half the price. The threshold where owning hardware beats renting API calls is roughly this: if your monthly token spend on a hosted open model would clear $1,500 to $2,000/mo for more than 3 to 4 months running, a rented 8x H200 cluster (600GB NVFP4 tier, priced in the $20 to $30/hour range from most cloud GPU providers) starts to pencil out cheaper than the API. Below that, hosted is cheaper and you skip the ops work entirely.
The real gotcha: it's not the model, it's the tool calls
This is the part that actually breaks people's agent setups, and it has nothing to do with Inkling specifically. A May 19, 2026 Hacker News post, Show HN: Forge, hit 687 points and 252 comments showing that an 8B model jumps from 53% to 99% reliability on multi-step agentic tasks once you wrap its tool calls in validation-and-retry guardrails, without retraining anything. The failure mode isn't bad reasoning. It's malformed JSON, the wrong tool picked, or plain text where a structured call was expected. Small and mid-size open models, including quantized Inkling, are more prone to this than a frontier hosted model tuned specifically for tool use.
If you're running Inkling or Inkling-Small inside an agent loop that chains multiple tool calls, budget time for a guardrail layer, not just a model swap. This is a live, unsolved gap: Clawsmith tracks it as a wide-open opportunity with zero deployable products (the Forge library is a proof of concept, not a hosted service), which is the kind of thing worth checking before you build your own guardrail middleware from scratch on the pricing page tier that unlocks the lead list behind a signal like this.
When to use Inkling and when to just pay for a frontier model
Use Inkling or Inkling-Small, hosted, when: your workload is high-volume and cost-sensitive (the 187 vs 300 dollar gap above compounds fast at scale), you need to fine-tune on private data and want same-day turnaround via Tinker, or you specifically need the multimodal input path (audio, image, video) without paying frontier multimodal pricing.
Use a hosted frontier model like Claude Sonnet 5 when: you're calling tools in a multi-step agent loop and can't afford to build or maintain a guardrail layer, your volume is low enough that the price gap doesn't matter yet, or you need the top of the SWEBench/AIME leaderboard rather than "close, at a third of the tokens" (Thinking Machines' own comparison: Inkling matches Nemotron 3 Ultra on Terminal Bench 2.1 at roughly a third of the tokens, which is a real efficiency win, not a raw quality win).
Full self-hosting, on your own hardware, only makes sense once your hosted bill on Inkling would already be north of $1,500 to $2,000/mo for several months running. Before that line, renting the API is cheaper than renting or buying the GPUs to serve it yourself. For more releases like this one as they land, the model launches category gets a new breakdown every time something real ships, not just when a flagship lab drops a keynote.
FAQ
what is inkling and who released it
Inkling is a 975 billion parameter mixture of experts model from Thinking Machines Lab (Mira Murati's company), released July 15, 2026 under Apache 2.0. It has 41B active parameters per token, a 1M token context window, and was trained on 45 trillion tokens of text, image, audio, and video. A smaller preview, Inkling-Small, runs 276B total parameters with 12B active.
can i run inkling on a single gpu
No. The BF16 checkpoint needs roughly 1.9TB of disk and 2TB of aggregate VRAM (8x B300 or 16x H200). The NVFP4 checkpoint drops that to 600GB of VRAM. Even the smallest usable quant, Unsloth's dynamic 1-bit GGUF, needs 280 to 295GB of combined RAM and VRAM. A single consumer GPU with 24 to 32GB of VRAM does not clear that bar.
how much does inkling cost through a hosted api compared to claude
On Thinking Machines' Tinker platform, Inkling runs $1.87 per million prefill tokens and $4.68 per million sample tokens at 64K context, a 50% launch discount. Claude Sonnet 5 costs $2 per million input and $10 per million output tokens through August 31, 2026, then $3/$15 after. Inkling's output price is roughly half of Sonnet 5's, before you factor in any self-hosting cost at all.
what is inkling-small and when do the full weights ship
Inkling-Small is a 276B total parameter, 12B active parameter preview from the same training recipe as full Inkling, and Thinking Machines says it matches or beats the larger model on several benchmarks. As of July 17, 2026 it is a preview, not a full release, so there are no published GGUF quant sizes yet. Scaling the full model's 270GB dynamic 1-bit quant by parameter count puts Inkling-Small in the 75 to 80GB range once quants ship, though that number is a calculation, not a confirmed figure.
do local or open models work reliably for agent tool calling
Not by default. A May 2026 Hacker News post (Show HN: Forge, 687 points, 252 comments) showed that an 8B model jumps from 53% to 99% reliability on multi-step agentic tasks once you add validation-and-retry guardrails around its tool calls, without retraining anything. Small and local models tend to reason correctly but format tool calls wrong, so the guardrail layer matters more than the model choice for anything that has to call tools in a loop.
Sources
- 01Inkling: Our open-weights modelthinkingmachines.ai
- 02Thinking Machines amps up its bet against one-size-fits-all AI with its first open model, Inklingtechcrunch.com
- 03Inkling - How to Run Locallyunsloth.ai
- 04Show HN: Forge - Guardrails take an 8B model from 53% to 99% on agentic tasksnews.ycombinator.com
- 05Apple drops 512GB M3 Ultra Mac Studio option, ups 256GB memory upgrade by $400macdailynews.com
Keep reading
Find what to build next
Clawsmith reads real posts across the web, finds the demand, and hands your coding agent a full build brief. Free to start.
Try Clawsmith






