Skip to content

Commit cd8853f

Browse files
authored
Merge pull request #1616 from fhennerkes/dev
poe: add GPT-5.5 and GPT-5.5-Pro models
2 parents fb29715 + 4e7849c commit cd8853f

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name = "GPT-5.5-Pro"
2+
release_date = "2026-04-08"
3+
last_updated = "2026-04-08"
4+
5+
[extends]
6+
from = "opencode/gpt-5.5-pro"
7+
omit = [
8+
"cost.cache_read",
9+
"limit.input",
10+
"provider",
11+
]
12+
13+
[cost]
14+
input = 27.2727
15+
output = 163.6364
16+
17+
[limit]
18+
context = 400_000
19+
output = 128_000
20+
21+
[modalities]
22+
input = ["text", "image"]
23+
output = ["text", "image"]
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
release_date = "2026-04-08"
2+
last_updated = "2026-04-08"
3+
4+
[extends]
5+
from = "openai/gpt-5.5"
6+
omit = [
7+
"cost.context_over_200k",
8+
"limit.input",
9+
"experimental",
10+
]
11+
12+
[cost]
13+
input = 4.5455
14+
output = 27.2727
15+
cache_read = 0.4545
16+
17+
[limit]
18+
context = 400_000
19+
output = 128_000
20+
21+
[modalities]
22+
input = ["text", "image"]
23+
output = ["text", "image"]

0 commit comments

Comments
 (0)