> ## 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 V4 Flash Vision Exp

> DeepSeek V4 Flash Vision Exp：面向图像感知 Agent 的实验性多模态模型。

DeepSeek V4 Flash Vision Exp 是支持视觉的实验性 V4 Flash 路由，适合文本与图片推理和 Agent 工作流。

通过以下接口在 MixRoute 调用 `deepseek-v4-flash-vision-exp`。

## 核心能力

* 视觉输入：支持文本与图片内容
* 1M 上下文：支持长程多模态会话
* 最大输出 384K：支持扩展推理与生成
* 工具与 Responses 兼容：适合 Agent 工作流

## 快速示例

<Tabs>
  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.mixroute.ai/v1/chat/completions" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
      "model": "deepseek-v4-flash-vision-exp",
      "messages": [{
        "role": "user",
        "content": [
          {"type": "text", "text": "描述这张图片。"},
          {"type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}}
        ]
      }],
      "max_tokens": 256
    }'
    ```
  </Tab>
</Tabs>

## 参数

| 参数                 | 类型      | 必填 | 说明                                  |
| ------------------ | ------- | -- | ----------------------------------- |
| `model`            | string  | 是  | 固定为 `deepseek-v4-flash-vision-exp`。 |
| `messages`         | array   | 是  | 包含 role 与 content 的对话消息。            |
| `image_url`        | object  | 否  | 公网 URL 或支持的编码图片输入。                  |
| `max_tokens`       | integer | 否  | 最大生成 Token 数。                       |
| `reasoning_effort` | string  | 否  | 模型支持时设置推理强度。                        |
| `tools`            | array   | 否  | OpenAI 兼容工具定义。                      |

## 厂商资料

* [DeepSeek 模型与定价](https://api-docs.deepseek.com/quick_start/pricing/)
