Commit
·
7c1695e
1
Parent(s):
eabf2fa
- src/lib/data.ts +8 -0
src/lib/data.ts
CHANGED
@@ -28,6 +28,14 @@ export const mockData: Provider[] = [
|
|
28 |
{ name: 'Claude 3 Haiku', inputPrice: 0.25, outputPrice: 1.25 },
|
29 |
],
|
30 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
{
|
32 |
provider: 'Google',
|
33 |
uri: 'https://ai.google.dev/pricing?hl=en',
|
|
|
28 |
{ name: 'Claude 3 Haiku', inputPrice: 0.25, outputPrice: 1.25 },
|
29 |
],
|
30 |
},
|
31 |
+
{
|
32 |
+
provider: 'AI21 Labs',
|
33 |
+
uri: 'https://www.ai21.com/pricing',
|
34 |
+
models: [
|
35 |
+
{ name: 'Jamba 1.5 Mini', inputPrice: 0.2, outputPrice: 0.4 },
|
36 |
+
{ name: 'Jamba 1.5 Large', inputPrice: 2.0, outputPrice: 8.0 },
|
37 |
+
],
|
38 |
+
},
|
39 |
{
|
40 |
provider: 'Google',
|
41 |
uri: 'https://ai.google.dev/pricing?hl=en',
|