Commit
·
283e1b0
1
Parent(s):
8a5d8fc
- src/lib/data.ts +4 -0
src/lib/data.ts
CHANGED
@@ -6,19 +6,23 @@ export const mockData: Provider[] = [
|
|
6 |
uri: 'https://openai.com/api/pricing/',
|
7 |
models: [
|
8 |
{ name: 'o1-preview', inputPrice: 15.0, outputPrice: 60.0 },
|
|
|
9 |
{ name: 'o1-mini', inputPrice: 3.0, outputPrice: 12.0 },
|
|
|
10 |
{ name: 'GPT-4 Turbo', inputPrice: 10.0, outputPrice: 30.0 },
|
11 |
{ name: 'GPT-4 Turbo Batch', inputPrice: 5.0, outputPrice: 15.0 },
|
12 |
{ name: 'GPT-4o', inputPrice: 5.0, outputPrice: 15.0 },
|
13 |
{ name: 'GPT-4o-64K Output Alpha', inputPrice: 6.0, outputPrice: 18.0 },
|
14 |
{ name: 'GPT-4o 64K Output Alpha Batch', inputPrice: 3.0, outputPrice: 9.0 },
|
15 |
{ name: 'gpt-4o-2024-08-06', inputPrice: 2.5, outputPrice: 10.0 },
|
|
|
16 |
{ name: 'GPT-4o Batch', inputPrice: 2.5, outputPrice: 7.5 },
|
17 |
{ name: 'gpt-4o-2024-08-06 Batch', inputPrice: 1.25, outputPrice: 5.0 },
|
18 |
{ name: 'GPT-3.5 Turbo', inputPrice: 0.5, outputPrice: 1.5 },
|
19 |
{ name: 'GPT-3.5 Turbo Batch', inputPrice: 0.25, outputPrice: 0.75 },
|
20 |
{ name: 'GPT-4o Mini', inputPrice: 0.15, outputPrice: 0.60 },
|
21 |
{ name: 'GPT-4o Mini Batch', inputPrice: 0.075, outputPrice: 0.3 }
|
|
|
22 |
],
|
23 |
},
|
24 |
{
|
|
|
6 |
uri: 'https://openai.com/api/pricing/',
|
7 |
models: [
|
8 |
{ name: 'o1-preview', inputPrice: 15.0, outputPrice: 60.0 },
|
9 |
+
{ name: 'o1-preview-cache-input', inputPrice: 7.50, outputPrice: 60.0 },
|
10 |
{ name: 'o1-mini', inputPrice: 3.0, outputPrice: 12.0 },
|
11 |
+
{ name: 'o1-mini-cache-input', inputPrice: 1.50, outputPrice: 12.0 },
|
12 |
{ name: 'GPT-4 Turbo', inputPrice: 10.0, outputPrice: 30.0 },
|
13 |
{ name: 'GPT-4 Turbo Batch', inputPrice: 5.0, outputPrice: 15.0 },
|
14 |
{ name: 'GPT-4o', inputPrice: 5.0, outputPrice: 15.0 },
|
15 |
{ name: 'GPT-4o-64K Output Alpha', inputPrice: 6.0, outputPrice: 18.0 },
|
16 |
{ name: 'GPT-4o 64K Output Alpha Batch', inputPrice: 3.0, outputPrice: 9.0 },
|
17 |
{ name: 'gpt-4o-2024-08-06', inputPrice: 2.5, outputPrice: 10.0 },
|
18 |
+
{ name: 'gpt-4o-2024-08-06', inputPrice: 1.25, outputPrice: 10.0 },
|
19 |
{ name: 'GPT-4o Batch', inputPrice: 2.5, outputPrice: 7.5 },
|
20 |
{ name: 'gpt-4o-2024-08-06 Batch', inputPrice: 1.25, outputPrice: 5.0 },
|
21 |
{ name: 'GPT-3.5 Turbo', inputPrice: 0.5, outputPrice: 1.5 },
|
22 |
{ name: 'GPT-3.5 Turbo Batch', inputPrice: 0.25, outputPrice: 0.75 },
|
23 |
{ name: 'GPT-4o Mini', inputPrice: 0.15, outputPrice: 0.60 },
|
24 |
{ name: 'GPT-4o Mini Batch', inputPrice: 0.075, outputPrice: 0.3 }
|
25 |
+
{ name: 'GPT-4o Mini Cache Inout', inputPrice: 0.075, outputPrice: 0.60 }
|
26 |
],
|
27 |
},
|
28 |
{
|