Spaces:
Sleeping
Sleeping
- src/lib/data.ts +8 -0
src/lib/data.ts
CHANGED
@@ -126,6 +126,14 @@ export const mockData: Provider[] = [
|
|
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 |
]
|
|
|
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 |
+
provider: 'Custom1',
|
132 |
+
uri: 'https://google.com',
|
133 |
+
models: [
|
134 |
+
{ name: 'CustomLM1', inputPrice: 1.33, outputPrice: 1.22 },
|
135 |
+
{ name: 'CustomLM2', inputPrice: 2.33, outputPrice: 2.22 },
|
136 |
+
],
|
137 |
}
|
138 |
|
139 |
]
|