Using Mistral Large on Fireworks AI
Implementation guide · Mistral Large · MistralAI
ServerlessOpen Weights
Fireworks AI exposes Mistral Large through model ID mistral-large-1. Use the setup steps, sourced pricing, capabilities, and official provider links below to validate this route before deployment.
Last refreshed 2026-06-16. Next refresh: weekly.
Quick Start
- 1
- 2Use the Fireworks AI SDK or REST API to call
mistral-large-1— see the documentation for request format. - 3
Code Examples
Install
pip install openaiAPI key
FIREWORKS_API_KEYModel ID
mistral-large-1Fireworks model IDs use "accounts/fireworks/models/{model-name}" format, e.g. "accounts/fireworks/models/llama4-scout-instruct-basic" or "accounts/fireworks/models/deepseek-r1".
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["FIREWORKS_API_KEY"],
base_url="https://api.fireworks.ai/inference/v1"
)
response = client.chat.completions.create(
model="mistral-large-1",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Pricing on Fireworks AI
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.90 |
| Output tokens | $0.90 |
Capabilities
VisionJSON / Tool useStructured Outputs
About Mistral Large
Mistral Large is a language model from MistralAI. It is deprecated (originally released 2024-02-08); use it only for reproducing earlier results or evaluating drift over time.
Model Specs
Released2024-02-08
Parameters123B
Context32k
Knowledge cutoff2024-03