模型信息
能力与使用
- Speciale 是独立的推理版本,不是当前的 DeepSeek Flash 模型。
- 不要将标准 V3.2 的工具调用能力套用到 Speciale;使用不带 tools 的文本请求。
请求示例
调用前设置MIXROUTE_API_KEY。
请求字段
完整请求格式见接口说明。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
DeepSeek V3.2 的高强度推理版本,面向高难度文本、数学和分析任务。
| 字段 | 说明 |
|---|---|
model | deepseek-v3.2-speciale |
endpoint | POST /v1/chat/completions |
MIXROUTE_API_KEY。
curl --request POST "https://api.mixroute.ai/v1/chat/completions" \
--header "Authorization: Bearer $MIXROUTE_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"model": "deepseek-v3.2-speciale",
"messages": [
{
"role": "user",
"content": "Explain the tradeoffs of database indexes."
}
],
"max_tokens": 1024
}'
| 字段 | 说明 |
|---|---|
model | 必填,使用上方完整模型 ID。 |
messages | 必填,会话消息包含 role 和 content。 |
max_tokens | 可选,输出 token 预算。 |