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
73 changes: 59 additions & 14 deletions general/open-ai.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
{ "key": "logit_bias", "defaultValue": null, "type": "string", "skipValues": [null] }
],
"messages": { "options": ["system", "user", "assistant", "developer"] },
"type": { "primary": "chat", "supported": ["messages","responses"], "unsupported":[] }
"type": { "primary": "chat", "supported": ["messages", "responses"], "unsupported": [] }
},

"gpt-4": {
Expand Down Expand Up @@ -1342,20 +1342,20 @@
"o3-deep-research": {
"disablePlayground": true,
"params": [{ "key": "max_completion_tokens", "defaultValue": 1000, "minValue": 1, "maxValue": 100000 }],
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"o3-deep-research-2025-06-26": {
"disablePlayground": true,
"params": [{ "key": "max_completion_tokens", "defaultValue": 1000, "minValue": 1, "maxValue": 100000 }],
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"o4-mini-deep-research": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"o4-mini-deep-research-2025-06-26": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-4o-mini-realtime-preview": {
"type": { "primary": "chat", "supported": [] }
Expand All @@ -1371,7 +1371,7 @@
},
"codex-mini-latest": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-4o-mini-search-preview-2025-03-11": {
"type": { "primary": "chat", "supported": [], "unsupported": ["responses"] }
Expand Down Expand Up @@ -1910,7 +1910,7 @@
},
"gpt-5-codex": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-5-pro": {
"disablePlayground": true,
Expand Down Expand Up @@ -1962,7 +1962,7 @@
}
],

"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat", "messages"] }
},
"gpt-5-pro-2025-10-06": {
"disablePlayground": true,
Expand Down Expand Up @@ -2014,7 +2014,7 @@
}
],

"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat", "messages"] }
},
"sora-2": {
"disablePlayground": true,
Expand Down Expand Up @@ -2320,11 +2320,11 @@
},
"gpt-5.2-pro": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-5.2-pro-2025-12-11": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"chatgpt-4o-latest": {
"type": {
Expand Down Expand Up @@ -2401,7 +2401,8 @@
"gpt-4o-search-preview-2025-03-11": {
"type": {
"primary": "chat",
"supported": [], "unsupported": ["responses"]
"supported": [],
"unsupported": ["responses"]
}
},
"gpt-5-search-api": {
Expand Down Expand Up @@ -2781,14 +2782,58 @@
"disablePlayground": true,
"type": {
"primary": "responses",
"supported": ["tools", "image"], "unsupported": ["chat","messages"]
"supported": ["tools", "image"],
"unsupported": ["chat", "messages"]
}
},
"gpt-5.4-pro-2026-03-05": {
"disablePlayground": true,
"type": {
"primary": "responses",
"supported": ["tools", "image"], "unsupported": ["chat","messages"]
"supported": ["tools", "image"],
"unsupported": ["chat", "messages"]
}
},
"gpt-5.2-chat-2025-12-11": {
Comment thread
sivadurga-d marked this conversation as resolved.
"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"] }
}
}
73 changes: 59 additions & 14 deletions general/openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
{ "key": "logit_bias", "defaultValue": null, "type": "string", "skipValues": [null] }
],
"messages": { "options": ["system", "user", "assistant", "developer"] },
"type": { "primary": "chat", "supported": ["messages","responses"], "unsupported":[]}
"type": { "primary": "chat", "supported": ["messages", "responses"], "unsupported": [] }
},

"gpt-4": {
Expand Down Expand Up @@ -1342,20 +1342,20 @@
"o3-deep-research": {
"disablePlayground": true,
"params": [{ "key": "max_completion_tokens", "defaultValue": 1000, "minValue": 1, "maxValue": 100000 }],
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"o3-deep-research-2025-06-26": {
"disablePlayground": true,
"params": [{ "key": "max_completion_tokens", "defaultValue": 1000, "minValue": 1, "maxValue": 100000 }],
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"o4-mini-deep-research": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"o4-mini-deep-research-2025-06-26": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-4o-mini-realtime-preview": {
"type": { "primary": "chat", "supported": [] }
Expand All @@ -1371,7 +1371,7 @@
},
"codex-mini-latest": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-4o-mini-search-preview-2025-03-11": {
"type": { "primary": "chat", "supported": [], "unsupported": ["responses"] }
Expand Down Expand Up @@ -1910,7 +1910,7 @@
},
"gpt-5-codex": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-5-pro": {
"disablePlayground": true,
Expand Down Expand Up @@ -1962,7 +1962,7 @@
}
],

"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat", "messages"] }
},
"gpt-5-pro-2025-10-06": {
"disablePlayground": true,
Expand Down Expand Up @@ -2014,7 +2014,7 @@
}
],

"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": ["tools", "image"], "unsupported": ["chat", "messages"] }
},
"sora-2": {
"disablePlayground": true,
Expand Down Expand Up @@ -2276,6 +2276,48 @@

"type": { "primary": "chat", "supported": ["tools", "image"] }
},
"gpt-5.2-chat-2025-12-11": {
"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.2-chat-latest": {
"removeParams": ["temperature", "top_p", "n", "presence_penalty", "frequency_penalty", "logit_bias", "max_tokens"],
"params": [
Expand Down Expand Up @@ -2320,11 +2362,11 @@
},
"gpt-5.2-pro": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"gpt-5.2-pro-2025-12-11": {
"disablePlayground": true,
"type": { "primary": "responses", "supported": [], "unsupported": ["chat","messages"] }
"type": { "primary": "responses", "supported": [], "unsupported": ["chat", "messages"] }
},
"chatgpt-4o-latest": {
"type": {
Expand Down Expand Up @@ -2401,7 +2443,8 @@
"gpt-4o-search-preview-2025-03-11": {
"type": {
"primary": "chat",
"supported": [], "unsupported": ["responses"]
"supported": [],
"unsupported": ["responses"]
}
},
"gpt-5-search-api": {
Expand Down Expand Up @@ -2781,14 +2824,16 @@
"disablePlayground": true,
"type": {
"primary": "responses",
"supported": ["tools", "image"], "unsupported": ["chat","messages"]
"supported": ["tools", "image"],
"unsupported": ["chat", "messages"]
}
},
"gpt-5.4-pro-2026-03-05": {
"disablePlayground": true,
"type": {
"primary": "responses",
"supported": ["tools", "image"], "unsupported": ["chat","messages"]
"supported": ["tools", "image"],
"unsupported": ["chat", "messages"]
}
}
}
26 changes: 26 additions & 0 deletions pricing/azure-openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -2918,6 +2918,32 @@
}
}
},
"gpt-5.2-chat-2025-12-11": {
"pricing_config": {
"pay_as_you_go": {
"request_token": {
"price": 0.000175
},
"response_token": {
"price": 0.0014
},
"cache_write_input_token": {
"price": 0
},
"cache_read_input_token": {
"price": 0.0000175
Comment thread
siddharthsambharia-portkey marked this conversation as resolved.
},
"additional_units": {
"web_search": {
"price": 1
},
"file_search": {
"price": 0.25
}
}
}
}
},
"gpt-5.2-chat-latest": {
"pricing_config": {
"pay_as_you_go": {
Expand Down
28 changes: 27 additions & 1 deletion pricing/openai.json
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@
"response_audio_token": {
"price": 0.0012
}
}
}
}
}
},
Expand Down Expand Up @@ -3188,6 +3188,32 @@
}
}
},
"gpt-5.2-chat-2025-12-11": {
"pricing_config": {
"pay_as_you_go": {
"request_token": {
"price": 0.000175
},
"response_token": {
"price": 0.0014
},
"cache_write_input_token": {
"price": 0
},
"cache_read_input_token": {
"price": 0.0000175
},
"additional_units": {
"web_search": {
"price": 1
},
"file_search": {
"price": 0.25
}
}
}
}
},
"gpt-5.2-chat-latest": {
"pricing_config": {
"pay_as_you_go": {
Expand Down
Loading