Presidentlin
commited on
Commit
•
4060e49
1
Parent(s):
ad581cd
- src/lib/data.ts +13 -2
src/lib/data.ts
CHANGED
@@ -25,8 +25,10 @@ export const mockData: Provider[] = [
|
|
25 |
provider: 'Google',
|
26 |
uri: 'https://ai.google.dev/pricing?hl=en',
|
27 |
models: [
|
28 |
-
{ name: 'Gemini 1.5 Pro', inputPrice: 3.5, outputPrice:
|
29 |
-
{ name: 'Gemini 1.5
|
|
|
|
|
30 |
],
|
31 |
},
|
32 |
{
|
@@ -37,6 +39,15 @@ export const mockData: Provider[] = [
|
|
37 |
{ name: 'Command R', inputPrice: 0.5, outputPrice: 1.5 },
|
38 |
],
|
39 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
{
|
41 |
provider: 'Mistral',
|
42 |
uri: 'https://docs.mistral.ai/platform/pricing',
|
|
|
25 |
provider: 'Google',
|
26 |
uri: 'https://ai.google.dev/pricing?hl=en',
|
27 |
models: [
|
28 |
+
{ name: 'Gemini 1.5 Pro', inputPrice: 3.5, outputPrice: 10.50 },
|
29 |
+
{ name: 'Gemini 1.5 Pro 2M', inputPrice: 7.0, outputPrice: 21.0 },
|
30 |
+
{ name: 'Gemini 1.5 Flash', inputPrice: 0.35, outputPrice: 1.05 },
|
31 |
+
{ name: 'Gemini 1.5 Flash 1M', inputPrice: 0.70, outputPrice: 2.10 },
|
32 |
],
|
33 |
},
|
34 |
{
|
|
|
39 |
{ name: 'Command R', inputPrice: 0.5, outputPrice: 1.5 },
|
40 |
],
|
41 |
},
|
42 |
+
{
|
43 |
+
provider: 'Reka',
|
44 |
+
uri: 'https://www.reka.ai/reka-deploy',
|
45 |
+
models: [
|
46 |
+
{ name: 'Reka Core', inputPrice: 3.0, outputPrice: 15.0 },
|
47 |
+
{ name: 'Reka Flash', inputPrice: 0.8, outputPrice: 2.0 },
|
48 |
+
{ name: 'Reka Edge', inputPrice: 0.4, outputPrice: 1.0 }
|
49 |
+
]
|
50 |
+
},
|
51 |
{
|
52 |
provider: 'Mistral',
|
53 |
uri: 'https://docs.mistral.ai/platform/pricing',
|