Mercury

Other chattool_use

API ID: inception/mercury

Input Price
$0.25
/1M tokens
Output Price
$0.75
/1M tokens

About Mercury

Mercury is Inception's language model, delivering strong performance on general AI tasks. The model excels at conversation, content generation, and analysis. Mercury variants include coding-specialized versions for development tasks. The series demonstrates Inception's advancement in language model development. For developers seeking capable AI from Inception, Mercury offers reliable performance.

๐Ÿ’ฐ
Price Ranking
#739 lowest price among 950 Chat models

Model Specifications

Context Length
128k
Max Output
32k
Release Date
2025-06-26
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.34
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$10.50
/month
1000 tickets/day, ~800 tokens each

Other Model Lineup

Compare all models from Other to find the best fit

Model Input Output Context Capabilities
Mercury Current Free Free 128k chat tool_use
Riverflow V2 Max Preview Free Free 8k chat vision image_gen
Riverflow V2 Standard Preview Free Free 8k chat vision image_gen
Riverflow V2 Fast Preview Free Free 8k chat vision image_gen
AFM 4.5B Free Free 66k chat
AFM 4.5B Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

DeepSeek DeepSeek V3.1 Terminus
Input: $0.21
Output: $0.79
Context: 164k
Zhipu AI GLM 4.5 Air
Input: $0.13
Output: $0.85
Context: 131k
DeepSeek DeepSeek V3 0324
Input: $0.20
Output: $0.77
Context: 164k
Microsoft WizardLM-2 8x22B
Input: $0.48
Output: $0.48
Context: 66k

๐Ÿš€ Quick Start

Get started with Mercury API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="inception/mercury",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)