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
42 changes: 42 additions & 0 deletions general/azure-openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -4042,6 +4042,48 @@

"type": { "primary": "chat", "supported": ["tools", "image"] }
},
"gpt-5.5-2026-04-24": {
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "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.5-pro": {
"disablePlayground": true,
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "max_tokens"],
Expand Down
85 changes: 85 additions & 0 deletions general/openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -3018,6 +3018,48 @@

"type": { "primary": "chat", "supported": ["tools", "image"] }
},
"gpt-5.5-2026-04-23": {
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "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"] }
},
"chat-latest": {
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "max_tokens"],
"params": [
Expand Down Expand Up @@ -3101,6 +3143,49 @@
}
],

"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat", "messages"] }
},
"gpt-5.5-pro-2026-04-23": {
"disablePlayground": true,
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "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": "responses", "supported": ["tools", "image"], "unsupported": ["chat", "messages"] }
}
}
29 changes: 29 additions & 0 deletions pricing/azure-openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -3763,6 +3763,35 @@
}
}
},
"gpt-5.5-2026-04-24": {
"pricing_config": {
"pay_as_you_go": {
"request_token": {
"price": 0.0005
},
"response_token": {
"price": 0.003
},
"cache_write_input_token": {
"price": 0
},
"cache_read_input_token": {
"price": 0.00005
},
"additional_units": {
"web_search": {
"price": 1
},
"file_search": {
"price": 0.25
},
"routing_units": {
"price": 0.000014
}
}
}
}
},
"gpt-5.6-luna": {
"pricing_config": {
"pay_as_you_go": {
Expand Down
Loading
Loading