Inception Labs / inception/mercury-2.5-preview

Mercury 2.5 Preview - access through LLMTR

Mercury 2.5 Preview is the newer release of Inception Labs' diffusion language model (dLLM). It uses the same parallel-generation-and-refinement approach as Mercury 2 with double the context window: 260,000 tokens. A single response can be at most 65,536 tokens. It supports tool/function calling and schema-enforced JSON output, and accepts text only. One pricing detail is worth knowing before you switch: its per-token rate is markedly lower than Mercury 2's, but by default it produces roughly five times as many hidden reasoning tokens, and those bill as output. In our measurements the real cost of a short request came out almost identical between the two models. Use the `:none` suffix to turn reasoning off entirely or `:minimal` to keep it light; the default level is `medium`. Only those three levels are advertised on this row, because in measurement `low` did not separate from `minimal` and `high` did not separate from `medium`. This is a preview release: the provider may change its behaviour and its pricing.

Technical specifications

Canonical IDinception/mercury-2.5-preview
ProviderInception Labs
Context window260,000 tokens
OperationsCHAT_COMPLETIONS
Modalitiestext

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.040000
CHAT_COMPLETIONSCACHE_READPER_1M_TOKENS$0.004000
CHAT_COMPLETIONSOUTPUT_TEXTPER_1M_TOKENS$0.150000

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":"inception/mercury-2.5-preview","messages":[{"role":"user","content":"Hello"}]}'

Related models