Skip to content

Commit f188fbb

Browse files
committed
fix(rankings): simplify Mistral series labels
1 parent 4b3f274 commit f188fbb

2 files changed

Lines changed: 15 additions & 9 deletions

File tree

manifests/vendors/mistral-ai.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@
1010
"modelSeries": [
1111
{
1212
"id": "devstral-2",
13-
"name": "Devstral 2",
13+
"name": "Devstral",
1414
"modelIds": ["devstral-2"]
1515
},
1616
{
1717
"id": "devstral-small-2",
18-
"name": "Devstral Small 2",
18+
"name": "Devstral Small",
1919
"modelIds": ["devstral-small-2"]
2020
},
2121
{
2222
"id": "mistral-medium-3-5",
23-
"name": "Mistral Medium 3.5",
23+
"name": "Mistral Medium",
2424
"modelIds": ["mistral-medium-3-5"]
2525
},
2626
{
2727
"id": "mistral-small-4",
28-
"name": "Mistral Small 4",
28+
"name": "Mistral Small",
2929
"modelIds": ["mistral-small-4"]
3030
}
3131
],
@@ -88,7 +88,7 @@
8888
"fields": ["communityUrls.blog"]
8989
}
9090
],
91-
"lastVerifiedAt": "2026-07-30",
91+
"lastVerifiedAt": "2026-07-31",
9292
"verifiedBy": "codex",
9393
"confidence": "high",
9494
"websiteUrl": "https://mistral.ai",

tests/model-intelligence-index.test.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,16 @@ describe('model intelligence index', () => {
281281
const mistralSeries = modelIntelligenceSeries.filter(series => series.vendor === 'Mistral AI')
282282

283283
expect(mistralSeries.map(series => series.name)).toEqual([
284-
'Devstral 2',
285-
'Devstral Small 2',
286-
'Mistral Medium 3.5',
287-
'Mistral Small 4',
284+
'Devstral',
285+
'Devstral Small',
286+
'Mistral Medium',
287+
'Mistral Small',
288+
])
289+
expect(mistralSeries.map(series => series.id)).toEqual([
290+
'Mistral AI:devstral-2',
291+
'Mistral AI:devstral-small-2',
292+
'Mistral AI:mistral-medium-3-5',
293+
'Mistral AI:mistral-small-4',
288294
])
289295
expect(mistralSeries.map(series => series.points.map(point => point.modelId))).toEqual([
290296
['devstral-2'],

0 commit comments

Comments
 (0)