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