支持模型与参数文字模型
文字模型
集中查看文字模型的共同字段和单模型文档入口。
文字模型和图片、视频任务模型不一样,通常是直接返回文本生成结果,而不是依赖异步任务轮询。
当前线上已确认公开的 CodexReverse 文字模型如下;实际可用模型、区域、API Key 权限和价格始终以 GET /v1/models 返回结果为准。
文字模型共同字段
| 字段 | 类型 | 是否必填 | 说明 |
|---|---|---|---|
model | string | 是 | 具体文字模型 ID |
input | string | 是 | 用户输入内容 |
messages | array | 是(Chat) | 包含 system、user、assistant 的多轮消息 |
instructions | string | 否(Responses) | Responses 接口的系统级提示词 |
stream | boolean | 否 | 是否流式返回 |
reasoning | object | 否 | 推理配置,例如 {\"effort\":\"high\"} |
当前文字模型
| 模型 | 区域 | 推荐场景 | 详情 |
|---|---|---|---|
gpt_5_4 | 线上配置 | 通用文本生成 | 已公开 |
gpt_5_5 | 线上配置 | 通用文本生成 | 已公开 |
gpt_5_6_luna | 线上配置 | 文本生成 | 已公开 |
gpt_5_6_sol | 线上配置 | 文本生成 | 已公开 |
gpt_5_6_terra | 线上配置 | 文本生成 | 已公开 |
为什么现在就保留这一层
- 文字模型支持系统提示词、历史消息、流式输出和 reasoning;不支持图片、视频、音频输入。
- Chat Completions 使用
messages[].role = system;Responses 使用顶层instructions,不使用自定义systemPrompt字段。 - 文字模型使用
/v1/chat/completions或/v1/responses,不要使用图片/视频的/v1/generations。

