ChatfireAPI
首页官网模型列表服务监控
关于更多
  • 充值
  • 联系客服
首页官网模型列表服务监控
关于更多
  • 充值
  • 联系客服
    • 返回首页
    • OpenAI
    • OpenAI SDK教程
    • 全模型开启Plus模式
      • 开启 联网
        POST
      • 开启 画画
        POST
      • 开启 文件问答
        POST
      • 开启 图片问答(推荐格式)
        POST
      • 开启 文件问答-支持多轮对话(推荐格式)
        POST
    • 多模态聊天(支持图片、视频)
      • 使用说明
      • OpenaiSDK用法
      • Gpt系列
        POST
      • Claude系列
        POST
      • Qwen系列
        POST
      • Internvl系列
        POST
      • Glm系列
        POST
      • Cpm系列
        POST
      • 视频解析
        POST
      • 音频解析
        POST
      • 豆包系列(混合推理,可关闭思考)
        POST
    • DeepClaude
      POST
    • 创建聊天补全(SeedEdit)
      POST
    • 图片编辑(Chat)
      POST
    • 联网模型
      POST
    • PPT助手
      POST
    • Google系列
      POST
    • 混元
      POST
    • Chat画画/视频
      POST
    • responses
      POST
    • o3
      POST

      responses

      POST
      {{YOUR_BASE_URL}}/v1/responses
      最后修改时间:2025-06-12 03:40:22
      责任人:未设置
      给定一个提示,该模型将返回一个或多个预测的完成,并且还可以返回每个位置的替代标记的概率。
      为提供的提示和参数创建完成

      请求参数

      Authorization
      在 Header 添加参数
      Authorization
      ,其值为在 Bearer 之后拼接 Token
      示例:
      Authorization: Bearer ********************
      Header 参数
      Content-Type
      string 
      必需
      示例值:
      application/json
      Accept
      string 
      必需
      示例值:
      application/json
      Authorization
      string 
      可选
      示例值:
      Bearer {{YOUR_API_KEY}}
      Body 参数application/json
      model
      string 
      必需
      枚举值 gpt-4o-image,gemini-image
      input
      string 
      必需
      stream
      boolean 
      必需
      示例
      {
        "model": "gpt-4.1", // 枚举值 openai的模型
        "input": "Tell me a three sentence bedtime story about a unicorn.",
        "stream": true
      }

      示例代码

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      请求示例请求示例
      Shell
      JavaScript
      Java
      Swift
      curl --location -g --request POST '{{YOUR_BASE_URL}}/v1/responses' \
      --header 'Accept: application/json' \
      --header 'Authorization: Bearer {{YOUR_API_KEY}}' \
      --header 'Content-Type: application/json' \
      --data-raw '{
        "model": "gpt-4.1", // 枚举值 openai的模型
        "input": "Tell me a three sentence bedtime story about a unicorn.",
        "stream": true
      }'

      返回响应

      🟢200成功
      text/event-stream
      Body
      object {0}
      示例
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": ">",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889537,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": " ",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889537,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "V",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889537,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "i",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889537,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "d",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "e",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "o",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "T",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "a",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "s",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "k",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "(",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "i",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "d",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "=",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "8",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "8",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "9",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "1",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "2",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "1",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "5",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "4",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "4",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "8",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "4",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "2",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "5",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "5",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "4",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "7",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "8",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "7",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "0",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": ",",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": " ",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889538,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "i",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "m",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "a",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "g",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "e",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "_",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "u",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "r",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "l",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "=",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "N",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "o",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "e",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": ",",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": " ",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "p",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "r",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "o",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "m",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "p",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "t",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "=",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "一",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "条",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "狗",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": ")",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "\n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "[🤫 任务进度](",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889539,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "🔥",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889543,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "🔥",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889546,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "🔥",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889554,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "🔥",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889557,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "🔥",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889561,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "🔥",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889564,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": ")🎉🎉🎉\n\n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889567,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "[^1]: [封面](https://aigc-files.bigmodel.cn/api/cogvideo/01579f22-094f-11f0-92a2-be9386d3c5e8_cover_0.jpeg)\n\n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889567,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "[^2]: [视频](https://aigc-files.bigmodel.cn/api/cogvideo/01579f22-094f-11f0-92a2-be9386d3c5e8_0.mp4)\n\n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889567,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "[视频](https://aigc-files.bigmodel.cn/api/cogvideo/01579f22-094f-11f0-92a2-be9386d3c5e8_0.mp4)[^1][^2]\n\n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889567,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "![视频](https://aigc-files.bigmodel.cn/api/cogvideo/01579f22-094f-11f0-92a2-be9386d3c5e8_0.mp4)[^1][^2]\n\n",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": null,
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742889567,
          "model": " ",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: {
          "id": "chatcmpl-9HTx3gddGmuG3T9ZYXgeSX",
          "choices": [
              {
                  "delta": {
                      "content": "",
                      "function_call": null,
                      "refusal": null,
                      "role": null,
                      "tool_calls": null,
                      "reasoning_content": ""
                  },
                  "finish_reason": "stop",
                  "index": 0,
                  "logprobs": null
              }
          ],
          "created": 1742838337,
          "model": "",
          "object": "chat.completion.chunk",
          "service_tier": null,
          "system_fingerprint": null,
          "usage": null
      }
      
      data: [DONE
      ]
      修改于 2025-06-12 03:40:22
      上一页
      Chat画画/视频
      下一页
      o3
      Built with