xAI: Grok 3 Mini Beta
由 X-ai 提供
Grok 3 Mini is a lightweight, smaller thinking model. Unlike traditional models that generate answers immediately, Grok 3 Mini thinks before responding. It’s ideal for reasoning-heavy tasks that don’t demand extensive domain knowledge, and shines in math-specific and quantitative use cases, such as solving challenging puzzles or math problems. Transparent "thinking" traces accessible. Defaults to low reasoning, can boost with setting `reasoning: { effort: "high" }` Note: That there are two xAI endpoints for this model. By default when using this model we will always route you to the base endpoint. If you want the fast endpoint you can add `provider: { sort: throughput}`, to sort by throughput instead.
支持流式输出最大 131K tokens
模型特性
输入模态
- text
模型参数
最大 Tokens:131K
默认温度:0.7
流式输出:支持
定价信息
积分定价
文本输入:10 积分
图片输入:18 积分
消息输出:37 积分
API 定价
输入价格:$0.300/1K tokens
输出价格:$0.500/1K tokens
使用示例
API 调用示例
curl -X POST "https://chat.chatsking.com/api/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "grok-3-mini-beta",
"messages": [
{
"role": "user",
"content": "Hello, how are you?"
}
],
"max_tokens": 1000,
"temperature": 0.7
}'