跳转到正文

创建模型响应 gpt-5启用思考

OpenAPI Specification

yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/responses:
    post:
      summary: 创建模型响应 gpt-5启用思考
      deprecated: false
      description: |-
        https://platform.openai.com/docs/api-reference/responses/create
        部分OpenAI模型仅支持Response格式,例如o3-pro,codex-mini-latest
      tags:
        - 聊天(Responses)
      parameters:
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Accept
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: false
          example: Bearer {{YOUR_API_KEY}}
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                model:
                  type: string
                  description: 要使用的模型的 ID。有关哪些模型可与聊天 API 一起使用的详细信息,请参阅模型端点兼容性表。
                input:
                  type: array
                  items:
                    type: object
                    properties:
                      role:
                        type: string
                      content:
                        type: array
                        items:
                          type: object
                          properties:
                            type:
                              type: string
                            text:
                              type: string
                          x-apifox-orders:
                            - type
                            - text
                    x-apifox-orders:
                      - role
                      - content
                    required:
                      - content
                      - role
                  description: 模型的文本、图像,用于生成响应。
                tools:
                  type: array
                  items:
                    type: string
                  description: 模型可以调用的一组工具列表。目前,只支持作为工具的函数。使用此功能来提供模型可以为之生成 JSON 输入的函数列表。
                text:
                  type: object
                  properties:
                    format:
                      type: object
                      properties:
                        type:
                          type: string
                          description: 定义的响应格式类型。始终为text。
                      required:
                        - type
                      x-apifox-orders:
                        - type
                      description: 指定模型必须输出的格式。
                    verbosity:
                      type: string
                      description: >-
                        限制模型响应的详细程度。较低的值为更简洁的响应,而较高的值会有更详细的响应。目前支持的值为low、medium和high。默认为medium
                  x-apifox-orders:
                    - format
                    - verbosity
                  description: 用于模型文本响应的配置选项。可以是纯文本或结构化 JSON 数据。
                reasoning:
                  type: object
                  properties:
                    effort:
                      type: string
                      description: >-
                        当前支持的值有minimal、low、medium和high。减少推理工作量可以加快响应速度,并减少响应中用于推理的标记。默认为medium
                    summary:
                      type: string
                      description: 模型执行的推理的摘要。这对于调试和理解模型的推理过程很有用。auto、concise或之一detailed。
                  x-apifox-orders:
                    - effort
                    - summary
                stream:
                  type: boolean
                  description: >-
                    默认为 false  如果设置,则像在 ChatGPT
                    中一样会发送部分消息增量。标记将以仅数据的服务器发送事件的形式发送,这些事件在可用时,并在 data: [DONE]
                    消息终止流。Python 代码示例。
                store:
                  type: boolean
                  description: 是否存储生成的模型响应以供以后通过 API 检索。默认为true
              x-apifox-orders:
                - model
                - input
                - tools
                - text
                - reasoning
                - stream
                - store
            example:
              model: gpt-5-2025-08-07
              input:
                - role: user
                  content:
                    - type: input_text
                      text: 1+2+3+4+5....9985
              tools: []
              text:
                format:
                  type: text
                verbosity: medium
              reasoning:
                effort: medium
                summary: auto
              stream: true
              store: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  object:
                    type: string
                  created:
                    type: integer
                  choices:
                    type: array
                    items:
                      type: object
                      properties:
                        index:
                          type: integer
                        message:
                          type: object
                          properties:
                            role:
                              type: string
                            content:
                              type: string
                          required:
                            - role
                            - content
                          x-apifox-orders:
                            - role
                            - content
                        finish_reason:
                          type: string
                      x-apifox-orders:
                        - index
                        - message
                        - finish_reason
                  usage:
                    type: object
                    properties:
                      prompt_tokens:
                        type: integer
                      completion_tokens:
                        type: integer
                      total_tokens:
                        type: integer
                    required:
                      - prompt_tokens
                      - completion_tokens
                      - total_tokens
                    x-apifox-orders:
                      - prompt_tokens
                      - completion_tokens
                      - total_tokens
                required:
                  - id
                  - object
                  - created
                  - choices
                  - usage
                x-apifox-orders:
                  - id
                  - object
                  - created
                  - choices
                  - usage
              example:
                id: chatcmpl-123
                object: chat.completion
                created: 1677652288
                choices:
                  - index: 0
                    message:
                      role: assistant
                      content: |-


                        Hello there, how may I assist you today?
                    finish_reason: stop
                usage:
                  prompt_tokens: 9
                  completion_tokens: 12
                  total_tokens: 21
          headers: {}
          x-apifox-name: OK
      security:
        - bearer: []
      x-apifox-folder: 聊天(Responses)
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7937429/apis/api-427877282-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://new.22codex.xyz
    description: 正式环境
security:
  - bearer: []

文档内容持续更新,请以控制台可用模型与接口为准。