Skip to content

Commit 673e8e4

Browse files
committed
refactor: Move Azure models from docs/models.md to scripts/modules/supported-models.json
- Remove Azure model entries from documentation tables - Add Azure provider section to supported-models.json with gpt-4o, gpt-4o-mini, and gpt-4-1 - Maintain consistency with existing model configuration structure
1 parent 1ebf217 commit 673e8e4

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

docs/models.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
| anthropic | claude-opus-4-20250514 | 0.725 | 15 | 75 |
1010
| anthropic | claude-3-7-sonnet-20250219 | 0.623 | 3 | 15 |
1111
| anthropic | claude-3-5-sonnet-20241022 | 0.49 | 3 | 15 |
12-
| azure | gpt-4o | 0.332 | 2.5 | 10 |
13-
| azure | gpt-4o-mini | 0.3 | 0.15 | 0.6 |
14-
| azure | gpt-4-1 | - | 2 | 8 |
1512
| openai | gpt-4o | 0.332 | 2.5 | 10 |
1613
| openai | o1 | 0.489 | 15 | 60 |
1714
| openai | o3 | 0.5 | 2 | 8 |
@@ -94,9 +91,6 @@
9491
| anthropic | claude-opus-4-20250514 | 0.725 | 15 | 75 |
9592
| anthropic | claude-3-7-sonnet-20250219 | 0.623 | 3 | 15 |
9693
| anthropic | claude-3-5-sonnet-20241022 | 0.49 | 3 | 15 |
97-
| azure | gpt-4o | 0.332 | 2.5 | 10 |
98-
| azure | gpt-4o-mini | 0.3 | 0.15 | 0.6 |
99-
| azure | gpt-4-1 | - | 2 | 8 |
10094
| openai | gpt-4o | 0.332 | 2.5 | 10 |
10195
| openai | o3 | 0.5 | 2 | 8 |
10296
| openai | o4-mini | 0.45 | 1.1 | 4.4 |

scripts/modules/supported-models.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,38 @@
5757
"max_tokens": 64000
5858
}
5959
],
60+
"azure": [
61+
{
62+
"id": "gpt-4o",
63+
"swe_score": 0.332,
64+
"cost_per_1m_tokens": {
65+
"input": 2.5,
66+
"output": 10.0
67+
},
68+
"allowed_roles": ["main", "fallback"],
69+
"max_tokens": 16384
70+
},
71+
{
72+
"id": "gpt-4o-mini",
73+
"swe_score": 0.3,
74+
"cost_per_1m_tokens": {
75+
"input": 0.15,
76+
"output": 0.6
77+
},
78+
"allowed_roles": ["main", "fallback"],
79+
"max_tokens": 16384
80+
},
81+
{
82+
"id": "gpt-4-1",
83+
"swe_score": 0,
84+
"cost_per_1m_tokens": {
85+
"input": 2.0,
86+
"output": 10.0
87+
},
88+
"allowed_roles": ["main", "fallback"],
89+
"max_tokens": 16384
90+
}
91+
],
6092
"openai": [
6193
{
6294
"id": "gpt-4o",

0 commit comments

Comments
 (0)