Thinkingmachines model page

Thinking Machines: Inkling Small (batch)

thinkingmachines/inkling-small:batch

Inkling Small is an open-weight multimodal mixture-of-experts model from Thinking Machines Lab, with 12B active parameters out of 276B total. It is positioned as the smaller, more efficient member of...

TextVisionAudioTool callingReasoningFast responses
Input / 1M
$0.65
Output / 1M
$1.56
Context
524K
Markup
30%

Use this model through UAI

A dedicated public landing page for this synced catalog row.

Provider
Thinkingmachines

Synced from the active catalog

Context window
524K tokens

Validated for gateway requests

UAI input
$0.65

Charged from your UAI balance

UAI output
$1.56

Same API key and billing flow

This page exists for direct linking, onboarding, and SEO. The same model row powers /v1/models, the public catalog, the app pricing screen, and request validation for /v1/chat/completions.

Why use this model through UAI

The same model route, but with one account, one balance, and one API shape.

Reasoning workloads

Use Thinking Machines: Inkling Small (batch) for multi-step prompts, planning, and deeper analysis while keeping the same OpenAI-compatible UAI endpoint.

Multimodal prompts

The synced capabilities for this row indicate image or vision support, so you can route multimodal requests through the same UAI account and billing flow.

Interactive latency

Thinking Machines: Inkling Small (batch) is positioned well for chat UIs, demos, and agent loops where faster turn time matters.

Pricing and access

Current synced numbers for this exact model row.

UAI input / 1M tokens
$0.65
UAI output / 1M tokens
$1.56
Thinkingmachines input / 1M
$0.50
Thinkingmachines output / 1M
$1.20
Context window
524,288
Current markup
30%

Need another option? Browse the full models catalog or compare rows in the signed-in pricing table.

Quickstart

Use this model with your UAI key over the standard OpenAI-compatible route.

Create a key in API Keys, then send requests to https://uai.sh/v1/chat/completions.

curl
curl https://uai.sh/v1/chat/completions \
  -H "Authorization: Bearer uai-YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "thinkingmachines/inkling-small:batch",
    "messages": [{"role": "user", "content": "Say hi in one short sentence."}],
    "stream": false
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(base_url="https://uai.sh/v1", api_key="uai-YOUR_API_KEY")
response = client.chat.completions.create(
    model="thinkingmachines/inkling-small:batch",
    messages=[{"role": "user", "content": "Say hi in one short sentence."}],
    stream=False
)
print(response.choices[0].message.content)
Node.js (OpenAI SDK)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://uai.sh/v1",
  apiKey: "uai-YOUR_API_KEY"
});

const response = await client.chat.completions.create({
  model: "thinkingmachines/inkling-small:batch",
  messages: [{ role: "user", content: "Say hi in one short sentence." }],
  stream: false
});

console.log(response.choices[0].message.content);

Related models

Other active rows to compare without leaving the public catalog.

thinkingmachines
Thinking Machines: Inkling Small
thinkingmachines/inkling-small
Input / 1M$0.58
Context1.0M tokens
thinkingmachines
Thinking Machines: Inkling
thinkingmachines/inkling
Input / 1M$1.30
Context1.0M tokens
thinkingmachines
Thinking Machines: Inkling (batch)
thinkingmachines/inkling:batch
Input / 1M$1.30
Context524K tokens