> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mixroute.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# DeepSeek V3.2 Speciale

> DeepSeek V3.2 的高强度推理版本，面向高难度文本、数学和分析任务。

DeepSeek V3.2 的高强度推理版本，面向高难度文本、数学和分析任务。

## 模型信息

| 字段         | 说明                        |
| ---------- | ------------------------- |
| `model`    | deepseek-v3.2-speciale    |
| `endpoint` | POST /v1/chat/completions |

## 能力与使用

* Speciale 是独立的推理版本，不是当前的 DeepSeek Flash 模型。
* 不要将标准 V3.2 的工具调用能力套用到 Speciale；使用不带 tools 的文本请求。

## 请求示例

调用前设置 `MIXROUTE_API_KEY`。

```bash theme={null}
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 预算。           |

完整请求格式见[接口说明](/cn/api-reference/endpoint/chat-openai)。
