New Model
All
8 min reading

Thinking Machines Inkling: What Developers Need to Know

Summarize this article with:

summary
  • Inkling is Thinking Machines Lab's first open-weights model: a 975 billion parameter MoE (Mixture-of-Experts, where only a fraction of parameters activate per request) that activates 41B parameters at inference time.
  • It scores 97.1% on AIME 2026, 87.2% on GPQA Diamond, and 46.0% on HLE with tools, placing it among the top open-weight models globally.
  • Inkling is released under Apache 2.0 license, allowing commercial use and fine-tuning without restrictions.
  • The model supports controllable reasoning effort, letting developers trade latency for depth on a per-request basis.
  • Available through multiple hosting providers and accessible via Eden AI's unified endpoint for production workloads.

Inkling is the first open-weights model from Thinking Machines Lab, the AI company founded by Mira Murati. It is a 975 billion parameter MoE model that activates 41 billion parameters per request. Released under Apache 2.0 in July 2026, it competes with frontier proprietary models on reasoning benchmarks while remaining fully open for self-hosting and fine-tuning.

What Makes Inkling Different

Most open-weight models released in 2026 are optimized for a single benchmark category. Inkling takes a different approach. It aims for broad competence across text, code, multimodal, and audio tasks rather than narrow leaderboard dominance.

The architecture uses a Mixture-of-Experts design. Out of 975 billion total parameters, only 41 billion activate for any given input. This keeps inference costs manageable while maintaining the knowledge capacity of a much larger model.

Controllable Reasoning Effort

Inkling includes a feature that lets you specify how much "thinking" the model should do before answering. You can set this per request, trading response speed for reasoning depth. For simple lookups, use low effort. For complex math or multi-step analysis, use high effort. This is similar to the "thinking budget" concept seen in other reasoning models but available in an open-weights package.

Benchmark Performance

Inkling's benchmark results place it as the top-performing US-origin open-weight model as of July 2026:

Benchmark Inkling Score What It Measures
AIME 2026 97.1% Advanced math competition problems
GPQA Diamond 87.2% Graduate-level science questions
HLE (with tools) 46.0% Humanity's Last Exam, tool-assisted

On Reddit's r/LocalLLaMA community, Inkling is recognized as the leading US open-weight model, closing the gap with Chinese open-weight alternatives that dominated earlier in 2026.

What Open-Weights Means for Your AI Strategy

Open weights give you three options that closed-source models do not:

  • Self-hosting: Run Inkling on your own hardware for complete data control. No API calls leave your infrastructure.
  • Fine-tuning: Adapt the model to your specific domain (medical, legal, financial) without sending training data to a third party.
  • Provider diversification: Access Inkling through multiple hosting providers, avoiding single-vendor dependency.

For teams already running a multi-provider AI (API) strategy, Inkling adds a new open-weight option that reduces reliance on any single proprietary model vendor. If a provider raises prices or changes terms, you can shift Inkling workloads to self-hosted infrastructure.

Accessing Inkling Through Eden AI

Eden AI's unified endpoint lets you access Inkling alongside proprietary models through the same API (Application Programming Interface, a way for programs to communicate). This means you can compare Inkling's output against Claude, GPT, or Gemini without changing your integration code.

Here is an example of calling Inkling through Eden AI:

import requests
import os

headers = {
    "Authorization": "Bearer " + os.environ["EDENAI_API_KEY"],
    "Content-Type": "application/json"
}

payload = {
    "model": "thinkingmachines/inkling",
    "messages": [
        {
            "role": "user",
            "content": "Explain the key differences between MoE and dense transformer architectures."
        }
    ],
    "max_tokens": 500
}

response = requests.post(
    "https://api.edenai.run/v3/chat/completions",
    headers=headers,
    json=payload
)

print(response.json()["choices"][0]["message"]["content"])

You can add fallback providers to ensure reliability:

payload_with_fallbacks = {
    "model": "thinkingmachines/inkling",
    "fallbacks": ["anthropic/claude-sonnet-5", "google/gemini-2.5-flash"],
    "messages": [
        {
            "role": "user",
            "content": "Your task here"
        }
    ]
}

Inkling vs Proprietary Models: When to Use Each

  • Use Inkling when you need data sovereignty, want to fine-tune for a specific domain, or need to avoid per-token API costs at high volume.
  • Use proprietary models when you need the absolute highest benchmark scores and are willing to pay per token. GPT-5.5 and Gemini 2.5 Pro still lead on some tasks.
  • Use both when you want a fallback strategy. Route routine tasks to Inkling and escalate complex queries to proprietary models.

Hardware Requirements for Self-Hosting

Running Inkling's full 975B parameters requires significant GPU (Graphics Processing Unit, hardware specialized for parallel computation) resources. The model card indicates you need multiple high-end GPUs. However, because only 41B parameters activate per request, the actual inference compute is closer to what a 40B dense model requires.

For teams without the hardware to self-host, managed hosting providers and Eden AI's endpoint offer the same model without infrastructure investment.

Conclusion

Inkling from Thinking Machines Lab is a significant addition to the open-weight model category. With competitive benchmarks, Apache 2.0 licensing, and controllable reasoning effort, it gives developers a new option for multi-provider AI strategies. Eden AI provides access to Inkling alongside every major proprietary model through one unified endpoint.

FAQs - Thinking Machines' Inkling

Inkling is a 975-billion-parameter Mixture-of-Experts model from Thinking Machines Lab. It activates 41 billion parameters per request and is released under the Apache 2.0 license for commercial use and fine-tuning.

Inkling scores 97.1% on AIME 2026, 87.2% on GPQA Diamond, and 46.0% on HLE with tools. These results make it competitive with frontier proprietary models while remaining fully open for self-hosting.

Inkling has 975 billion total parameters, but only 41 billion are activated per request. Running the complete model still requires multiple high-end GPUs. Managed hosting through providers such as Eden AI removes the need to operate the hardware yourself.

Yes. Inkling is released under the Apache 2.0 license, which permits commercial use and fine-tuning. You can adapt it for medical, legal, financial, or other domain-specific applications without restrictive licensing requirements.

Inkling is available through multiple hosting providers and through Eden AI’s unified endpoint . You can access it alongside Claude, GPT, Gemini, and other models using the same API key and integration.

Similar articles

New Model
Generative AI
Anthropic Mythos: What Developers Need to Know About the Newest Model Line
7/15/2026
·
Written bySamy Melaine
New Model
Generative AI
Claude Sonnet 5: Pricing, Benchmarks & API Access (2026)
7/1/2026
·
Written byTaha Zemmouri
let’s start

Start building with Eden AI

A single interface to integrate the best AI technologies into your products.