Skip to content

Commit 2bf408c

Browse files
ericyangpanclaude
andcommitted
refactor: normalize model pricing format to integers
- Remove unnecessary decimal points from pricing values - Convert 1.0 → 1, 3.0 → 3, 10.0 → 10, etc. - Improves JSON consistency across model manifests - Affects Claude Haiku 4.5, Opus 4.1, Sonnet 4/4.5, GPT-4.1, GPT-4o, Qwen3 Coder Plus 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent b438ab7 commit 2bf408c

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

manifests/models/claude-haiku-4-5.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"totalContext": "200K",
1616
"maxOutput": "8K",
1717
"tokenPricing": {
18-
"input": 1.0,
19-
"output": 1.0,
18+
"input": 1,
19+
"output": 1,
2020
"cache": null
2121
},
2222
"platformUrls": {

manifests/models/claude-opus-4-1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"totalContext": "200K",
1616
"maxOutput": "8K",
1717
"tokenPricing": {
18-
"input": 15.0,
19-
"output": 75.0,
18+
"input": 15,
19+
"output": 75,
2020
"cache": null
2121
},
2222
"platformUrls": {

manifests/models/claude-sonnet-4-5.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"totalContext": "200K",
1616
"maxOutput": "8K",
1717
"tokenPricing": {
18-
"input": 3.0,
19-
"output": 3.0,
18+
"input": 3,
19+
"output": 3,
2020
"cache": null
2121
},
2222
"platformUrls": {

manifests/models/claude-sonnet-4.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"totalContext": "200K",
1616
"maxOutput": "8K",
1717
"tokenPricing": {
18-
"input": 3.0,
19-
"output": 3.0,
18+
"input": 3,
19+
"output": 3,
2020
"cache": null
2121
},
2222
"platformUrls": {

manifests/models/gpt-4-1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"totalContext": "1M",
1616
"maxOutput": "16K",
1717
"tokenPricing": {
18-
"input": 3.0,
19-
"output": 15.0,
18+
"input": 3,
19+
"output": 15,
2020
"cache": null
2121
},
2222
"platformUrls": {

manifests/models/gpt-4o.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"maxOutput": "16K",
1717
"tokenPricing": {
1818
"input": 2.5,
19-
"output": 10.0,
19+
"output": 10,
2020
"cache": null
2121
},
2222
"platformUrls": {

manifests/models/qwen3-coder-plus.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"totalContext": "128K",
1616
"maxOutput": "8K",
1717
"tokenPricing": {
18-
"input": 1.0,
19-
"output": 1.0,
18+
"input": 1,
19+
"output": 1,
2020
"cache": null
2121
},
2222
"platformUrls": {

0 commit comments

Comments
 (0)