Thinking Machines / thinkingmachines/inkling-small

Inkling Small - access through LLMTR

Inkling Small is the smaller member of Thinking Machines' open-weights MoE family: 276 billion total and 12 billion active parameters per token. It carries the same architecture and hybrid reasoning behaviour as Inkling at roughly a third of the price. It reasons step by step before answering, and you tune that effort with `reasoning_effort` across six levels from none (off) to xhigh. It accepts images as base64 data URLs and audio as WAV, makes tool/function calls, produces JSON object output, and supports prompt-cache reads. It offers a 256K context window. Reasoning tokens are returned inside `completion_tokens` and billed as output.

Technical specifications

Canonical IDthinkingmachines/inkling-small
ProviderThinking Machines
Context window262,144 tokens
OperationsCHAT_COMPLETIONS
Modalitiestext, image, audio

Pricing

An 8% platform margin applies to credit top-ups; model usage prices are not separately marked up.

OperationMetricUnitPrice
CHAT_COMPLETIONSINPUT_TEXTPER_1M_TOKENS$0.580000
CHAT_COMPLETIONSCACHE_READPER_1M_TOKENS$0.116000
CHAT_COMPLETIONSOUTPUT_TEXTPER_1M_TOKENS$1.44

Example usage

With existing OpenAI SDK flows, change only the base URL and model identifier.

curl https://llmtr.com/v1/chat/completions \
  -H "Authorization: Bearer llmtr-your_key" \
  -H "Content-Type: application/json" \
  -d '{"model":"thinkingmachines/inkling-small","messages":[{"role":"user","content":"Hello"}]}'

Related models