Skip to content

Commit d9e7e9e

Browse files
authored
update mistral pricing (#5067)
1 parent ffcf597 commit d9e7e9e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

packages/__tests__/cost/__snapshots__/registrySnapshots.test.ts.snap

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4624,17 +4624,17 @@ exports[`Registry Snapshots pricing snapshot 1`] = `
46244624
"mistralai/mistral-nemo": {
46254625
"deepinfra": [
46264626
{
4627-
"input": 0.02,
4628-
"output": 0.04,
4627+
"input": 0.00002,
4628+
"output": 0.00004,
46294629
"threshold": 0,
46304630
},
46314631
],
46324632
},
46334633
"mistralai/mistral-small": {
46344634
"deepinfra": [
46354635
{
4636-
"input": 0.05,
4637-
"output": 0.1,
4636+
"input": 0.000075,
4637+
"output": 0.0002,
46384638
"threshold": 0,
46394639
},
46404640
],
@@ -5391,7 +5391,7 @@ exports[`Registry Snapshots verify registry state 1`] = `
53915391
"provider": "chutes",
53925392
},
53935393
{
5394-
"modelCount": 17,
5394+
"modelCount": 18,
53955395
"provider": "deepinfra",
53965396
},
53975397
{
@@ -5508,8 +5508,8 @@ exports[`Registry Snapshots verify registry state 1`] = `
55085508
"claude-3.5-haiku:openrouter:*",
55095509
],
55105510
"totalArchivedConfigs": 0,
5511-
"totalEndpoints": 151,
5512-
"totalModelProviderConfigs": 151,
5511+
"totalEndpoints": 152,
5512+
"totalModelProviderConfigs": 152,
55135513
"totalModelsWithPtb": 66,
55145514
"totalProviders": 14,
55155515
}

packages/cost/models/authors/mistralai/mistral-nemo/endpoints.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export const endpoints = {
1010
pricing: [
1111
{
1212
threshold: 0,
13-
input: 0.02,
14-
output: 0.04,
13+
input: 0.00002,
14+
output: 0.00004,
1515
},
1616
],
1717
rateLimits: {

packages/cost/models/authors/mistralai/mistral-small/endpoints.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export const endpoints = {
1010
pricing: [
1111
{
1212
threshold: 0,
13-
input: 0.05,
14-
output: 0.1,
13+
input: 0.000075,
14+
output: 0.0002,
1515
},
1616
],
1717
rateLimits: {

0 commit comments

Comments
 (0)