Mistral Large 3

Model Information

Display Name: Mistral Large 3

API Model ID: mistralai/mistral-large-3

Category: Text To Text

Description: Mistral Large 3 is the most powerful model from Mistral AI, featuring 123B parameters with frontier-level performance in reasoning, code generation, and agentic workflows. **Key Features:** - 256K token context window - 123B parameters with MoE architecture - State-of-the-art reasoning capabilities - Advanced agentic and tool use - Function calling and structured outputs - Multilingual support (12+ languages) **Capabilities:** - Complex reasoning and analysis - Advanced code generation - Long document processing - Multi-step agentic workflows - Mathematical problem solving - Synthetic data generation **Best For:** - Enterprise applications - Complex reasoning tasks - Long-context processing - High-stakes decision making **Technical Specs:** - Parameters: 123 billion - Architecture: Mixture-of-Experts - Context: 256K tokens - License: Commercial

Context Window: 262,144 tokens

Max Output: 32,768 tokens

How to Use This Model

To use Mistral Large 3 via the HInow.ai API, use the model ID: mistralai/mistral-large-3

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "mistralai/mistral-large-3",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

Pricing

  • input: $2.70
  • output: $8.10

Available Parameters

  • temperature: Controls randomness (0-1). Default: 0.7 (Options: 0, 0.3, 0.5, 0.7, 1.0)
  • top_p: Nucleus sampling (Options: 0.1, 0.5, 0.7, 0.9, 1.0)
  • max_tokens: Max tokens to generate (Options: 1024, 2048, 4096, 8192, 16384, 32768)
  • response_format: Output format (Options: text, json_object)

Quick Reference

To use this model, set: "model": "mistralai/mistral-large-3"

Featured: Yes

Documentation: https://hinow.ai/models/mistralai/mistral-large-3

API Endpoint: https://api.hinow.ai/v1

Back to Models
Mistral Large 3

Mistral Large 3

Featured

mistralai/mistral-large-3

$2.70 / $8.10
per 1M tokens (in/out)

About

Mistral Large 3 is the most powerful model from Mistral AI, featuring 123B parameters with frontier-level performance in reasoning, code generation, and agentic workflows.

Key Features:

  • 256K token context window
  • 123B parameters with MoE architecture
  • State-of-the-art reasoning capabilities
  • Advanced agentic and tool use
  • Function calling and structured outputs
  • Multilingual support (12+ languages)

Capabilities:

  • Complex reasoning and analysis
  • Advanced code generation
  • Long document processing
  • Multi-step agentic workflows
  • Mathematical problem solving
  • Synthetic data generation

Best For:

  • Enterprise applications
  • Complex reasoning tasks
  • Long-context processing
  • High-stakes decision making

Technical Specs:

  • Parameters: 123 billion
  • Architecture: Mixture-of-Experts
  • Context: 256K tokens
  • License: Commercial

Capabilities

Text To Text
Context262K tokens
Max Output33K tokens

Parameters

temperature

Controls randomness (0-1). Default: 0.7

00.30.50.71.0
top_p

Nucleus sampling

0.10.50.70.91.0
max_tokens

Max tokens to generate

10242048409681921638432768
response_format

Output format

textjson_object

Code Examples

curl -X POST https://api.hinow.ai/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "mistralai/mistral-large-3",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "1024",
      "response_format": "text"
    }
  }'