Skip to content

Commit a1f4aeb

Browse files
committed
prices only lower
1 parent 941709b commit a1f4aeb

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/routes/model-metadata.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,13 @@ export const modelMetadata: Record<string, ModelMetadata> = {
143143
isOpen: true,
144144
organization: "DeepSeek",
145145
},
146-
"deepseek-r1": { price: mixPrice(0.55, 2.19 * 5.7), isOpen: true, organization: "DeepSeek" },
146+
"deepseek-r1": { price: mixPrice(0.54, 2.18 * 5.7), isOpen: true, organization: "DeepSeek" },
147147
"deepseek-v3": { price: mixPrice(0.27, 1.1), isOpen: true, organization: "DeepSeek" },
148-
"deepseek-v3-0324": { price: mixPrice(0.27, 1.1), isOpen: true, organization: "DeepSeek" },
148+
"deepseek-v3-0324": {
149+
price: Math.min(mixPrice(0.27, 1.1), mixPrice(0.34, 0.88)),
150+
isOpen: true,
151+
organization: "DeepSeek",
152+
},
149153
"dolly-v2-12b": { isOpen: true },
150154
"falcon-180b-chat": { isOpen: true },
151155
"fastchat-t5-3b": { isOpen: true },
@@ -289,7 +293,7 @@ export const modelMetadata: Record<string, ModelMetadata> = {
289293
organization: "NVIDIA",
290294
},
291295
"llama-3.2-1b-instruct": {
292-
price: mixPrice(0.01, 0.02),
296+
price: mixPrice(0.01, 0.01),
293297
isOpen: true,
294298
organization: "Meta",
295299
},
@@ -309,7 +313,7 @@ export const modelMetadata: Record<string, ModelMetadata> = {
309313
organization: "Meta",
310314
},
311315
"llama-3.3-70b-instruct": {
312-
price: mixPrice(0.12, 0.3),
316+
price: mixPrice(0.12, 0.28),
313317
isOpen: true,
314318
organization: "Meta",
315319
},
@@ -323,7 +327,7 @@ export const modelMetadata: Record<string, ModelMetadata> = {
323327
organization: "Meta",
324328
},
325329
"llama-4-maverick-17b-128e-instruct": {
326-
price: mixPrice(0.2, 0.6),
330+
price: mixPrice(0.18, 0.6),
327331
isOpen: true,
328332
organization: "Meta",
329333
},

0 commit comments

Comments
 (0)