Now on VeniceLLMReasoningAnonymized

Mercury 2.5

Mercury 2.5 is the most capable diffusion LLM, delivering high-speed, low-cost reasoning with 260K context and tool calling — ideal for agents, search, and coding.

For agents
curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mercury-2-5",
    "messages": [{ "role": "user", "content": "Build without permission." }]
  }'
Model IDmercury-2-5
Maker
Inception
Context
260K tokens
Reasoning
Supported
Privacy
Anonymized

Overview

What is Mercury 2.5

Mercury 2.5 is Inception's most capable production diffusion LLM, released in September 2026. It generates and refines tokens in parallel, achieving speeds over 1,100 tokens per second. With a 260K context window, function calling, and web search, it excels in latency-sensitive workflows like agents, voice, and coding.

Using it anonymously on Venice

On Venice, Mercury 2.5 runs with full prompt anonymity — your inputs are never stored or profiled. This enables private, uncensored use of a high-performance reasoning model in production. The combination of zero retention and access to web search and tool use makes it ideal for developers building permissionless agents without surveillance trade-offs.

AnonymizedNo prompt trainingTEE · hardware enclaveEnd-to-end encrypted

Agent quickstart

Three calls, copied straight out

The API is OpenAI-compatible: change the base URL and the model id and existing client code works unchanged.

Streaming chat

curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mercury-2-5",
    "stream": true,
    "messages": [{ "role": "user", "content": "Draft the release note." }]
  }'

Tool calling

curl https://api.venice.ai/api/v1/chat/completions \
  -H "Authorization: Bearer $VENICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mercury-2-5",
    "messages": [{ "role": "user", "content": "Find the rate limits." }],
    "tools": [{
      "type": "function",
      "function": {
        "name": "search_docs",
        "description": "Search the API documentation.",
        "parameters": {
          "type": "object",
          "properties": { "query": { "type": "string" } },
          "required": ["query"]
        }
      }
    }],
    "tool_choice": "auto"
  }'

Python SDK

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["VENICE_API_KEY"],
    base_url="https://api.venice.ai/api/v1",
)

resp = client.chat.completions.create(
    model="mercury-2-5",
    messages=[{"role": "user", "content": "Build without permission."}],
)
print(resp.choices[0].message.content)

Specifications

Datasheet

Maker
Inception
Open weights
No — proprietary
License
Proprietary
Modes
Reasoning, tool calling, structured output (JSON schema)
Context window
260K tokens
Prompt length
260K tokens
Released
September 8, 2026
Architecture
Diffusion LLM (dLLM)
Parameters
Not disclosed
Max output
64K tokens
Capabilities
Function calling, Reasoning, Web search
Privacy on Venice
Anonymized — prompts not stored
Available on Venice since
Sep 2026

Assessment

Strengths and limitations

Strengths
  • Fastest reasoning LLM in production: generates tokens in parallel, achieving over 1,100 tokens per second on standard GPUs.
  • High intelligence at low cost: comparable to GPT-5.6 Luna (Low), Gemini 3.5 Flash-Lite, and Claude Haiku 4.5, but at a fraction of the price.
  • 260K context window enables deep analysis of long documents and complex reasoning chains.
  • Supports web search, tool use, and structured JSON output — ideal for agentic workflows.
  • Anonymized on Venice: no prompt storage or profiling, preserving user sovereignty.
Limitations
  • Not open weights: cannot be self-hosted or fine-tuned.
  • No vision or multimodal input: text-only model.
  • Limited independent benchmarking: newer model with less public validation than established leaders.

Use cases

What it is good for

  1. 01Latency-sensitive search agents that require fast, accurate responses.
  2. 02Voice pipelines where low time-to-first-token improves user experience.
  3. 03Coding agents that use tool calling and structured output to automate tasks.
  4. 04Enterprise workflows analyzing long documents or logs with 260K context.
  5. 05Privacy-first applications where prompt retention is unacceptable.

Prompting

Getting better results

Use explicit JSON schema in your prompt to ensure structured output.

Break complex tasks into parallel tool calls to leverage Mercury 2.5’s architecture.

Leverage web search by including 'search:' in your query for real-time data.

Keep prompts under 260K tokens to maximize context for reasoning.

Use clear reasoning directives like 'think step by step' to improve output quality.

Test with the promotional pricing tier to evaluate cost-performance before scaling.

Alternatives

How it compares

ModelBest forContextOpen weightsPrice (Venice)
Mercury 2.5Fast reasoning agents260K tokensNo$0.25 in · $0.94 out / 1M
Claude Opus 5Deep reasoning1M tokensNo$6 in · $30 out / 1M
DeepSeek V4 Flash 0731Cost-efficient throughput1M tokensYes$0.17 in · $0.35 out / 1M
Google Gemma 4 31B InstructOpen-weight reasoning256K tokensYes$0.12 in · $0.36 out / 1M

Mercury 2.5 is the right pick when you need the fastest reasoning with tool use and web search at low cost — outperforming rivals in agent speed and privacy without sacrificing intelligence.

Pricing

What it costs on Venice

Billed per token on Venice: $0.25 per 1M input tokens and $0.94 per 1M output tokens.

Input / 1M tokens
$0.25
Per 1M tokens
Output / 1M tokens
$0.94
Per 1M tokens
Cached input / 1M
$0.03
Per 1M tokens

New Venice accounts include a free daily allowance and 500 welcome credits — no credit card required.

Getting a key

From nothing to a first call

  1. 01

    Create a key in API settings. Nothing else is required to start.

  2. 02

    Export it as VENICE_API_KEY so the snippets above run unedited.

  3. 03

    Point an existing OpenAI client at https://api.venice.ai/api/v1. The scheme is part of the value: an OpenAI client given a bare host does not resolve it.

  4. 04

    Pass mercury-2-5 as the model and send the request.

FAQ

Frequently asked questions

Mercury 2.5 is Inception's most capable production diffusion LLM, released in September 2026. It generates tokens in parallel, achieving speeds over 1,100 tokens per second, with a 260K context window, tool calling, and web search — ideal for agents, coding, and search.

On Venice, Mercury 2.5 costs $0.25 per million input tokens and $0.94 per million output tokens. Cached input is $0.03 per million. A promotional rate of $0.04 input and $0.15 output is available at launch.

No. Mercury 2.5 is a proprietary model by Inception and is not open source. It is not free, but Venice offers a promotional rate at launch for reduced cost.

Yes. Mercury 2.5 supports tool use and function calling, enabling it to interact with external systems, APIs, and databases as part of agentic workflows.

Mercury 2.5 supports a 260K-token context window, allowing it to process and reason over very long documents and complex inputs.

Yes. Mercury 2.5 supports web search, allowing it to retrieve and incorporate real-time information into its responses.

Mercury 2.5 is faster and cheaper, with parallel token generation and web search, making it better for latency-sensitive agents. Claude Opus 5 offers deeper reasoning and 1M context but at a much higher cost.

Yes. On Venice, Mercury 2.5 runs under an anonymized privacy tier — your prompts are not stored, profiled, or used for training, ensuring full sovereignty over your inputs.

Use Mercury 2.5 anonymously

One key, free to start, no credit card.

Start chatGet an API key