response_format value as json_schema is enabled only for api versions 2024-08-01...
错误信息
response_format value as json_schema is enabled only for api versions 2024-08-01-preview and later (request id: 2026011216500126159697qSolNZuX)
AI 解决方案
好的,我来为您分析这个API调用错误。
报错信息分析
1. 错误翻译
``
原文:response_format value as json_schema is enabled only for api versions 2024-08-01-preview and later
译文:response_format 参数值设置为 json_schema 仅支持 API 版本 2024-08-01-preview 及更高版本
### 2. 原因分析
该错误的根本原因是 **API版本不兼容**。
具体来说:
- 在您的 API 请求中,您指定了一个较低(或较早)的 API 版本(例如 `2023-12-01-preview` 或 `2024-02-15-preview`)。
- 但您同时使用了 `response_format: json_schema` 这个参数,该特性是 **2024年8月** 的新版本中才引入的功能。
### 3. 解决方案
您需要将 API 调用中的版本号更新为支持该功能的最低版本。
**错误代码示例(假设使用 Azure OpenAI API):**
http
POST /openai/deployments/{deployment-id}/chat/completions?api-version=2024-02-15-preview
Content-Type: application/json
api-key: {your-api-key}{
"messages": [...],
"response_format": {"type": "json_schema"} // 此功能在 2024-02-15 版本中不存在
}
**解决方案代码:**
http
✅ 修复方法:升级 API 版本号
POST /openai/deployments/{deployment-id}/chat/completions?api-version=2024-08-01-preview
Content-Type: application/json
api-key: {your-api-key}{
"messages": [...],
"response_format": {
"type": "json_schema",
"json_schema": {
"name": "function_response",
"schema": {...} // 您的 JSON Schema 定义
}
}
}
如果您使用的是 SDK(如 Python `openai` 库),则需确保 SDK 版本足够新,并在初始化客户端时指定正确的 API 版本:
python
from openai import AzureOpenAIclient = AzureOpenAI(
api_key="your-key",
api_version="2024-08-01-preview", # 关键:使用正确的版本
azure_endpoint="your-endpoint"
)
``