Skip to content

Commit 379ab27

Browse files
fhennerkesclaude
andcommitted
poe: add GPT-5.4-Nano and GPT-5.4-Mini models
Add 2 new OpenAI models from Poe API: GPT-5.4-Nano (released 2026-03-11): - Reasoning support, 400K context, 128K output - Cost: $0.18/M input, $1.1/M output - Modalities: text, image GPT-5.4-Mini (released 2026-03-12): - Reasoning support, 400K context, 128K output - Cost: $0.68/M input, $4/M output - Modalities: text, image Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9838c55 commit 379ab27

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name = "GPT-5.4-Mini"
2+
release_date = "2026-03-12"
3+
last_updated = "2026-03-12"
4+
attachment = true
5+
reasoning = true
6+
temperature = false
7+
open_weights = false
8+
tool_call = true
9+
10+
[cost]
11+
input = 0.68
12+
output = 4
13+
cache_read = 0.068
14+
15+
[limit]
16+
context = 400_000
17+
input = 272_000
18+
output = 128_000
19+
20+
[modalities]
21+
input = ["text", "image"]
22+
output = ["text"]
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name = "GPT-5.4-Nano"
2+
release_date = "2026-03-11"
3+
last_updated = "2026-03-11"
4+
attachment = true
5+
reasoning = true
6+
temperature = false
7+
open_weights = false
8+
tool_call = true
9+
10+
[cost]
11+
input = 0.18
12+
output = 1.1
13+
cache_read = 0.018
14+
15+
[limit]
16+
context = 400_000
17+
input = 272_000
18+
output = 128_000
19+
20+
[modalities]
21+
input = ["text", "image"]
22+
output = ["text"]

0 commit comments

Comments
 (0)