Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 120 additions & 36 deletions general/azure-openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -3474,16 +3474,88 @@
"type": { "primary": "text" }
},
"gpt-5.3-chat": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
"removeParams": ["max_tokens"],
"params": [
{ "key": "max_completion_tokens", "defaultValue": 20000, "minValue": 1, "maxValue": 272000 },
{
"key": "response_format",
"defaultValue": null,
"options": [
{
"value": null,
"name": "Text"
},
{
"value": "json_object",
"name": "JSON Object",
"schema": {
"type": "object",
"properties": {
"type": { "type": "string", "value": "json_object" }
}
}
},
{
"value": "json_schema",
"name": "JSON Schema",
"schema": {
"type": "object",
"properties": {
"type": { "type": "string", "value": "json_schema" },
"json_schema": { "type": "object" }
}
},
"params": { "key": "json_schema", "defaultValue": null, "type": "json", "skipValues": [null] }
}
],
"skipValues": [null],
"type": "string"
}
],

"type": { "primary": "chat", "supported": ["tools", "image"] }
},
"gpt-5.4": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
"removeParams": ["max_tokens"],
"params": [
{ "key": "max_completion_tokens", "defaultValue": 20000, "minValue": 1, "maxValue": 272000 },
{
"key": "response_format",
"defaultValue": null,
"options": [
{
"value": null,
"name": "Text"
},
{
"value": "json_object",
"name": "JSON Object",
"schema": {
"type": "object",
"properties": {
"type": { "type": "string", "value": "json_object" }
}
}
},
{
"value": "json_schema",
"name": "JSON Schema",
"schema": {
"type": "object",
"properties": {
"type": { "type": "string", "value": "json_schema" },
"json_schema": { "type": "object" }
}
},
"params": { "key": "json_schema", "defaultValue": null, "type": "json", "skipValues": [null] }
}
],
"skipValues": [null],
"type": "string"
}
],

"type": { "primary": "chat", "supported": ["tools", "image"] }
},
"gpt-5.4-mini": {
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "max_tokens"],
Expand Down Expand Up @@ -3654,33 +3726,45 @@
"type": { "primary": "chat", "supported": ["tools", "image"] }
},
"gpt-5.4-pro": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
},
"gpt-5.4-mini": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
},
"gpt-5.4-mini-2026-03-17": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
},
"gpt-5.4-nano": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
},
"gpt-5.4-nano-2026-03-17": {
"type": {
"primary": "chat",
"supported": ["tools", "image"]
}
"removeParams": ["max_tokens"],
"params": [
{ "key": "max_completion_tokens", "defaultValue": 20000, "minValue": 1, "maxValue": 272000 },
{
"key": "response_format",
"defaultValue": null,
"options": [
{
"value": null,
"name": "Text"
},
{
"value": "json_object",
"name": "JSON Object",
"schema": {
"type": "object",
"properties": {
"type": { "type": "string", "value": "json_object" }
}
}
},
{
"value": "json_schema",
"name": "JSON Schema",
"schema": {
"type": "object",
"properties": {
"type": { "type": "string", "value": "json_schema" },
"json_schema": { "type": "object" }
}
},
"params": { "key": "json_schema", "defaultValue": null, "type": "json", "skipValues": [null] }
}
],
"skipValues": [null],
"type": "string"
}
],

"type": { "primary": "chat", "supported": ["tools", "image"] }
}
}
Loading
Loading