Spaces:
Runtime error
Runtime error
Commit
•
85a0cac
1
Parent(s):
69ff6ba
Update src/lib/data.ts (#2)
Browse files- Update src/lib/data.ts (35d0c4ce18b6239ecdad5146e72dbddfee4212b4)
Co-authored-by: Waseem AlShikh <[email protected]>
- src/lib/data.ts +10 -0
src/lib/data.ts
CHANGED
@@ -116,6 +116,16 @@ export const mockData: Provider[] = [
|
|
116 |
{ name: 'Llama 3 70b', inputPrice: 1.0, outputPrice: 1.0 },
|
117 |
{ name: 'Mixtral 8x7B', inputPrice: 0.60, outputPrice: 0.60 },
|
118 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
}
|
120 |
|
121 |
]
|
|
|
116 |
{ name: 'Llama 3 70b', inputPrice: 1.0, outputPrice: 1.0 },
|
117 |
{ name: 'Mixtral 8x7B', inputPrice: 0.60, outputPrice: 0.60 },
|
118 |
],
|
119 |
+
},
|
120 |
+
{
|
121 |
+
provider: 'Writer',
|
122 |
+
uri: 'https://dev.writer.com/home/pricing',
|
123 |
+
models: [
|
124 |
+
{ name: 'Palmyra X 003', inputPrice: 7.50, outputPrice: 22.50 },
|
125 |
+
{ name: 'Palmyra X 32k', inputPrice: 1.0, outputPrice: 2.0 },
|
126 |
+
{ name: 'Palmyra X 002', inputPrice: 1.0, outputPrice: 2.0 },
|
127 |
+
{ name: 'Palmyra X 002 32k', inputPrice: 1.0, outputPrice: 2.0 }
|
128 |
+
],
|
129 |
}
|
130 |
|
131 |
]
|