Commit
·
298535f
1
Parent(s):
8a1bff5
- src/lib/data.ts +38 -27
src/lib/data.ts
CHANGED
@@ -39,15 +39,6 @@ export const mockData: Provider[] = [
|
|
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',
|
@@ -60,6 +51,15 @@ export const mockData: Provider[] = [
|
|
60 |
{ name: "Mistral Nemo 2407", inputPrice: 0.3, outputPrice: 0.3 }
|
61 |
],
|
62 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
{
|
64 |
provider: 'DeepSpeek',
|
65 |
uri: 'https://platform.deepseek.com/api-docs/pricing/',
|
@@ -76,28 +76,32 @@ export const mockData: Provider[] = [
|
|
76 |
{ name: 'Llama 3 70B', inputPrice: 1.0, outputPrice: 1.0 },
|
77 |
],
|
78 |
},
|
79 |
-
|
80 |
{
|
81 |
provider: 'Together.AI',
|
82 |
uri: 'https://www.together.ai/pricing',
|
83 |
models: [
|
84 |
-
{ name: '
|
85 |
-
{ name: 'Llama 3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
],
|
87 |
},
|
88 |
{
|
89 |
-
provider: '
|
90 |
-
uri: 'https://
|
91 |
-
models: [
|
92 |
-
{ name: 'Llama 3 70B', inputPrice: 0.65, outputPrice: 2.75 },
|
93 |
-
{ name: 'Mixtral 8x7B', inputPrice: 0.30, outputPrice: 1.00 },
|
94 |
-
],
|
95 |
-
},
|
96 |
-
{
|
97 |
-
provider: 'IBM WatsonX',
|
98 |
-
uri: 'https://www.ibm.com/products/watsonx-ai/foundation-models',
|
99 |
models: [
|
100 |
-
{ name: 'Llama 3 70B', inputPrice:
|
|
|
101 |
],
|
102 |
},
|
103 |
{
|
@@ -114,11 +118,18 @@ export const mockData: Provider[] = [
|
|
114 |
]
|
115 |
},
|
116 |
{
|
117 |
-
provider: '
|
118 |
-
uri: 'https://
|
119 |
models: [
|
120 |
-
{ name: 'Llama 3 70B', inputPrice: 0.
|
121 |
-
{ name: 'Mixtral 8x7B', inputPrice: 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
],
|
123 |
},
|
124 |
{
|
|
|
39 |
{ name: 'Command R', inputPrice: 0.5, outputPrice: 1.5 },
|
40 |
],
|
41 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
{
|
43 |
provider: 'Mistral',
|
44 |
uri: 'https://docs.mistral.ai/platform/pricing',
|
|
|
51 |
{ name: "Mistral Nemo 2407", inputPrice: 0.3, outputPrice: 0.3 }
|
52 |
],
|
53 |
},
|
54 |
+
{
|
55 |
+
provider: 'Reka',
|
56 |
+
uri: 'https://www.reka.ai/reka-deploy',
|
57 |
+
models: [
|
58 |
+
{ name: 'Reka Core', inputPrice: 3.0, outputPrice: 15.0 },
|
59 |
+
{ name: 'Reka Flash', inputPrice: 0.8, outputPrice: 2.0 },
|
60 |
+
{ name: 'Reka Edge', inputPrice: 0.4, outputPrice: 1.0 }
|
61 |
+
]
|
62 |
+
},
|
63 |
{
|
64 |
provider: 'DeepSpeek',
|
65 |
uri: 'https://platform.deepseek.com/api-docs/pricing/',
|
|
|
76 |
{ name: 'Llama 3 70B', inputPrice: 1.0, outputPrice: 1.0 },
|
77 |
],
|
78 |
},
|
|
|
79 |
{
|
80 |
provider: 'Together.AI',
|
81 |
uri: 'https://www.together.ai/pricing',
|
82 |
models: [
|
83 |
+
{ name: 'Meta Llama 3 70B Instruct Turbo', inputPrice: 0.88, outputPrice: 0.88 },
|
84 |
+
{ name: 'Meta Llama 3 8B Instruct Turbo', inputPrice: 0.18, outputPrice: 0.18 },
|
85 |
+
{ name: 'Meta Llama 3 70B Instruct Lite', inputPrice: 0.54, outputPrice: 0.54 },
|
86 |
+
{ name: 'Meta Llama 3 8B Instruct Lite', inputPrice: 0.10, outputPrice: 0.10 },
|
87 |
+
{ name: 'Meta Llama 3 70B Reference', inputPrice: 0.90, outputPrice: 0.90 },
|
88 |
+
{ name: 'Meta Llama 3 8B Reference', inputPrice: 0.20, outputPrice: 0.20 },
|
89 |
+
{ name: 'Gemma-2 Instruct (27B)', inputPrice: 0.80, outputPrice: 0.80 },
|
90 |
+
{ name: 'Gemma-2 Instruct (9B)', inputPrice: 0.30, outputPrice: 0.30 },
|
91 |
+
{ name: "Mixtral 8x22B", inputPrice: 1.20, outputPrice: 1.20 },
|
92 |
+
{ name: "Mixtral 8x7B", inputPrice: 0.60, outputPrice: 0.60 },
|
93 |
+
{ name: "Mistral 7B", inputPrice: 0.20, outputPrice: 0.20 },
|
94 |
+
{ name: 'Qwen 2 Instruct (72B)', inputPrice: 0.90, outputPrice: 0.90 },
|
95 |
+
{ name: 'Snowflake Arctic Instruct', inputPrice: 2.40, outputPrice: 2.40 },
|
96 |
+
{ name: "DBRX", inputPrice: 1.20, outputPrice: 1.20 }
|
97 |
],
|
98 |
},
|
99 |
{
|
100 |
+
provider: 'Fireworks',
|
101 |
+
uri: 'https://fireworks.ai/pricing',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
models: [
|
103 |
+
{ name: 'Llama 3 70B', inputPrice: 0.90, outputPrice: 0.90 },
|
104 |
+
{ name: 'Mixtral 8x7B', inputPrice: 0.50, outputPrice: 0.50 },
|
105 |
],
|
106 |
},
|
107 |
{
|
|
|
118 |
]
|
119 |
},
|
120 |
{
|
121 |
+
provider: 'Replicate',
|
122 |
+
uri: 'https://replicate.com/pricing',
|
123 |
models: [
|
124 |
+
{ name: 'Llama 3 70B', inputPrice: 0.65, outputPrice: 2.75 },
|
125 |
+
{ name: 'Mixtral 8x7B', inputPrice: 0.30, outputPrice: 1.00 },
|
126 |
+
],
|
127 |
+
},
|
128 |
+
{
|
129 |
+
provider: 'IBM WatsonX',
|
130 |
+
uri: 'https://www.ibm.com/products/watsonx-ai/foundation-models',
|
131 |
+
models: [
|
132 |
+
{ name: 'Llama 3 70B', inputPrice: 1.80, outputPrice: 1.80 },
|
133 |
],
|
134 |
},
|
135 |
{
|