Skip to content

Commit 1bb5014

Browse files
committed
feat(azure): add GPT-5.5 model metadata
## Summary Adds GPT-5.5 metadata for: - Azure - Azure Cognitive Services The Azure Cognitive Services entry mirrors the existing local convention of full TOML model definitions. ## Sources - Microsoft Learn lists `gpt-5.5` for Azure OpenAI / Microsoft Foundry with version `2026-04-24`, `1,050,000` context, `922,000` input, `128,000` output, structured outputs, tools, image input, and December 2025 training data. - Microsoft’s Azure GPT-5.5 announcement lists pricing at `$5.00` input, `$0.50` cached input, and `$30.00` output per 1M tokens. - Azure Responses API docs list PDF input support for vision-capable models and include `gpt-5.5` version `2026-04-24`. ## Notes This intentionally does not add `gpt-5.5-pro`, since Azure Learn currently lists `gpt-5.5` but not `gpt-5.5-pro` in the Azure model catalog. This also intentionally omits OpenAI-specific `context_over_200k` and `experimental.modes.fast` metadata because the Azure sources confirm the standard pricing and limits, but not those OpenAI-specific fields.
1 parent b491c29 commit 1bb5014

2 files changed

Lines changed: 50 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name = "GPT-5.5"
2+
family = "gpt"
3+
release_date = "2026-04-24"
4+
last_updated = "2026-04-24"
5+
attachment = true
6+
reasoning = true
7+
temperature = false
8+
knowledge = "2025-12-01"
9+
tool_call = true
10+
structured_output = true
11+
open_weights = false
12+
13+
[cost]
14+
input = 5.00
15+
output = 30.00
16+
cache_read = 0.50
17+
18+
[limit]
19+
context = 1_050_000
20+
input = 922_000
21+
output = 128_000
22+
23+
[modalities]
24+
input = ["text", "image", "pdf"]
25+
output = ["text"]
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name = "GPT-5.5"
2+
family = "gpt"
3+
release_date = "2026-04-24"
4+
last_updated = "2026-04-24"
5+
attachment = true
6+
reasoning = true
7+
temperature = false
8+
knowledge = "2025-12-01"
9+
tool_call = true
10+
structured_output = true
11+
open_weights = false
12+
13+
[cost]
14+
input = 5.00
15+
output = 30.00
16+
cache_read = 0.50
17+
18+
[limit]
19+
context = 1_050_000
20+
input = 922_000
21+
output = 128_000
22+
23+
[modalities]
24+
input = ["text", "image", "pdf"]
25+
output = ["text"]

0 commit comments

Comments
 (0)