PPAI
  1. Deepseek系列
PPAI
  • OpenAI 官方接口集合
    • 经典Chat对话格式
    • Chat格式传图片URL
    • Chat格式传图片Base64
    • 新版Responses格式
    • Image Generations(gpt-image-1 / DALL·E 3)
  • AI图片
    • gpt-image-1
      • 文生图
    • gpt-image-1.5
      • 文生图
    • nano-banana
      • Nano-banana2原厂格式
      • Nano-Banana改图
      • 文生图(Gemini原厂格式)
      • 文生图(Chat格式)
      • 文生图(Image格式)
    • Seedream4.0
      • 文生图/图生图
  • AI视频
    • Veo系列
      • Chat格式
        • Veo3.1
        • Veo3.1 Pro
      • Video格式
        • Veo3.1-8s异步支持首尾帧
        • Veo3.1-8s异步支持参考图
        • Veo3.1-取视频
        • Veo3.1-Pro-8s异步支持首尾帧
    • Sora2逆向资源
      • Chat格式
      • Openai官方格式(拿到视频id)
      • 用id获取生成视频
    • Sora2官方资源
      • 1.创建视频任务拿到ID
      • 2.用视频ID查看任务进度
      • 3.下载MP4文件
      • 使用图像参考
      • Remix 完成的视频
  • Grok
    • Grok文本模型
  • Kimi
    • kimi-k2-thinking
  • Gemini系列
    • gemini-2.5-flash
    • gemini-2.5-pro官方格式
    • gemini-2.5-pro官方流式请求
    • gemini-2.5-pro图片理解
    • gemini-3-pro-preview
    • Gemini-Openai格式
  • Deepseek系列
    • Deepseek-V3.2
      POST
    • Deepseek-V3.2-Thinking
      POST
  1. Deepseek系列

Deepseek-V3.2-Thinking

POST
https://api.ppchat.vip/v1/chat/completions
最后修改时间:2025-12-05 05:20:46
责任人:未设置

请求参数

Header 参数

Body 参数application/json必填

示例

返回响应

🟢200成功
application/json
Body

请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.ppchat.vip/v1/chat/completions' \
--header 'Authorization: Bearer sk-' \
--header 'Content-Type: application/json' \
--data-raw '{
  "model": "deepseek-v3.2-thinking",
  "stream": false,
  "messages": [
    {
      "role": "user",
      "content": "Hello!"
    }
  ]
}'
响应示例响应示例
{
    "id": "60d3eb459434461db8a01949e30be031",
    "object": "chat.completion",
    "created": 1764911790,
    "model": "deepseek-v3.2",
    "choices": [
        {
            "index": 0,
            "message": {
                "role": "assistant",
                "content": "Hello! How can I assist you today?",
                "reasoning_content": "Hmm, the user just said \"Hello!\" with an exclamation mark, so they seem friendly and energetic. It's a simple greeting, so no complex analysis needed. I should respond warmly to match their tone. A cheerful \"Hello!\" back would work, maybe add a smiley face to keep it light. Since they didn't ask anything specific, I'll leave the door open for them to continue the conversation by asking how I can help. Short and friendly is key here.",
                "tool_calls": null
            },
            "logprobs": null,
            "finish_reason": "stop",
            "matched_stop": 1
        }
    ],
    "usage": {
        "prompt_tokens": 12,
        "total_tokens": 121,
        "completion_tokens": 109,
        "prompt_tokens_details": null,
        "reasoning_tokens": 0
    },
    "metadata": {
        "weight_version": "default"
    }
}
修改于 2025-12-05 05:20:46
上一页
Deepseek-V3.2
Built with