Mistral AI
Mistral Large 3
Mistral AI 旗舰级 MoE 开源模型,675B 总参数,支持多模态和 256K 上下文
上下文长度256K tokens
模型架构MoE (41B/675B)
开源协议Apache 2.0
定价与规格
💰 定价
输入$0.5 / M tokens
输出$1.5 / M tokens
⚙️ 规格
上下文长度256K tokens
模型架构MoE (41B/675B)
开源协议Apache 2.0
特色能力多模态 · 多语言
API 调用示例
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="mistral-large-latest",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "mistral-large-latest",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'