We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 187cf97 commit 88f5b34Copy full SHA for 88f5b34
1 file changed
src/gptcmd/llm/openai.py
@@ -30,11 +30,26 @@
30
)
31
32
OPENAI_COSTS: Dict[str, ModelCostInfo] = {
33
+ "gpt-5.1-2025-11-13": ModelCostInfo(
34
+ Decimal("1.25") / Decimal("1000000"),
35
+ Decimal("10") / Decimal("1000000"),
36
+ Decimal("0.1"),
37
+ ),
38
"gpt-5-2025-08-07": ModelCostInfo(
39
Decimal("1.25") / Decimal("1000000"),
40
Decimal("10") / Decimal("1000000"),
41
Decimal("0.1"),
42
),
43
+ "gpt-5.1-chat-latest": ModelCostInfo(
44
45
46
47
48
+ "gpt-5-chat-latest": ModelCostInfo(
49
50
51
52
53
"gpt-5-search-api-2025-10-14": ModelCostInfo(
54
55
0 commit comments