Commit
·
e2deaff
1
Parent(s):
10ee901
- src/lib/data.ts +53 -0
src/lib/data.ts
CHANGED
@@ -398,6 +398,59 @@ export const mockData: Provider[] = [
|
|
398 |
],
|
399 |
},
|
400 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
{
|
402 |
provider: "Moonshot AI",
|
403 |
uri: "https://platform.moonshot.cn/docs#models-and-pricing", // Replace with actual if different
|
|
|
398 |
],
|
399 |
},
|
400 |
|
401 |
+
{
|
402 |
+
provider: "Qwen",
|
403 |
+
uri: "https://bailian.console.alibabacloud.com",
|
404 |
+
models: [
|
405 |
+
{
|
406 |
+
name: "Qwen-Max",
|
407 |
+
inputPrice: 1.6,
|
408 |
+
outputPrice: 6.4,
|
409 |
+
},
|
410 |
+
{
|
411 |
+
name: "Qwen-Plus",
|
412 |
+
inputPrice: 0.4,
|
413 |
+
outputPrice: 1.2,
|
414 |
+
},
|
415 |
+
{
|
416 |
+
name: "Qwen-Max-Latest",
|
417 |
+
inputPrice: 1.6,
|
418 |
+
outputPrice: 6.4,
|
419 |
+
},
|
420 |
+
{
|
421 |
+
name: "Qwen-Plus-Latest",
|
422 |
+
inputPrice: 0.4,
|
423 |
+
outputPrice: 1.2,
|
424 |
+
},
|
425 |
+
{
|
426 |
+
name: "Qwen-Plus-2025-04-28",
|
427 |
+
inputPrice: 0.4,
|
428 |
+
outputPrice: 1.2,
|
429 |
+
},
|
430 |
+
{
|
431 |
+
name: "Qwen-Max-2025-01-25",
|
432 |
+
inputPrice: 1.6,
|
433 |
+
outputPrice: 6.4,
|
434 |
+
},
|
435 |
+
{
|
436 |
+
name: "Qwen-Plus-2025-01-25",
|
437 |
+
inputPrice: 0.4,
|
438 |
+
outputPrice: 1.2,
|
439 |
+
},
|
440 |
+
{
|
441 |
+
name: "Qwen3-235B-A22B",
|
442 |
+
inputPrice: 0.7,
|
443 |
+
outputPrice: 2.8,
|
444 |
+
},
|
445 |
+
{
|
446 |
+
name: "Qwen3-32B",
|
447 |
+
inputPrice: 0.7,
|
448 |
+
outputPrice: 2.8,
|
449 |
+
},
|
450 |
+
],
|
451 |
+
}
|
452 |
+
,
|
453 |
+
|
454 |
{
|
455 |
provider: "Moonshot AI",
|
456 |
uri: "https://platform.moonshot.cn/docs#models-and-pricing", // Replace with actual if different
|