Vision Mistral

Mistral Large 3 675B

Mistral Large 3 with 675B parameters

675B
Parameters
128K
Context Window
Credit Rate
Starter
Min Tier

Overview

Mistral Large 3 675B stands as a flagship proprietary model within the Mistral family, engineered for complex reasoning and enterprise-grade applications. With 675 billion parameters and a massive 128,000-token context window, this FP16 precision model handles extensive documentation analysis and multi-step agentic workflows without losing coherence. Developers can integrate immediately via standardized API endpoints, requiring minimal configuration to initiate the first request. The architecture supports high-throughput inference, ensuring latency remains manageable even during peak load scenarios. This makes it an ideal choice for building robust chatbots, code generation tools, or data extraction pipelines where accuracy is paramount.

For researchers and decision-makers, Mistral Large 3 delivers state-of-the-art performance across bilingual tasks, demonstrating exceptional proficiency in both Arabic and English benchmarks. It outperforms many alternatives in nuanced language understanding and logical deduction, making it suitable for production environments requiring high fidelity. Access is available starting at the starter tier on our platform, with a 4x credit multiplier reflecting its premium computational density. This transparent pricing structure allows teams to forecast operational costs accurately while leveraging top-tier intelligence. Whether validating hypothesis-driven research or deploying customer-facing solutions, this model provides the reliability and linguistic versatility needed for scalable AI deployment.

Specifications

Display Name Mistral Large 3 675B
Family Mistral
Category Vision
Parameters 675B
Context Window 128,000 tokens
Quantization FP16
License PROPRIETARY
Min Tier Starter
Status Available

Pricing

credits per token
1K 4,000 Credits
10K 40,000 Credits
100K 400,000 Credits
View Pricing Plans

Code Examples

from openai import OpenAI

client = OpenAI(
    base_url="https://llmapi.resayil.io/v1/",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="mistral-large-3:675b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)
const response = await fetch(
    "https://llmapi.resayil.io/v1/chat/completions",
    {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer YOUR_API_KEY"
        },
        body: JSON.stringify({
            model: "mistral-large-3:675b",
            messages: [
                { role: "user", content: "Hello!" }
            ]
        })
    }
);

const data = await response.json();
console.log(data.choices[0].message.content);
curl https://llmapi.resayil.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "mistral-large-3:675b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Use Cases

Analyzing long legal contracts for potential compliance risks
Generating complex code across multiple project files simultaneously
Summarizing lengthy technical reports and scientific research documents
Providing advanced enterprise customer support with full context
Conducting deep reasoning tasks on large structured datasets

Related Models

Start building with Mistral Large 3 675B

Get 1,000 free credits when you sign up — no credit card required.