Commit
·
7be74d2
1
Parent(s):
6732deb
- src/lib/data.ts +15 -0
src/lib/data.ts
CHANGED
@@ -5,6 +5,21 @@ export const mockData: Provider[] = [
|
|
5 |
provider: "OpenAI",
|
6 |
uri: "https://openai.com/api/pricing/",
|
7 |
models: [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
{
|
9 |
name: "gpt-4.5-preview",
|
10 |
inputPrice: 75.0,
|
|
|
5 |
provider: "OpenAI",
|
6 |
uri: "https://openai.com/api/pricing/",
|
7 |
models: [
|
8 |
+
{
|
9 |
+
name: "gpt-4.1",
|
10 |
+
inputPrice: 2.0,
|
11 |
+
outputPrice: 8.0,
|
12 |
+
},
|
13 |
+
{
|
14 |
+
name: "gpt-4.1-mini",
|
15 |
+
inputPrice: 0.4,
|
16 |
+
outputPrice: 1.6,
|
17 |
+
},
|
18 |
+
{
|
19 |
+
name: "gpt-4.1-nano",
|
20 |
+
inputPrice: 0.1,
|
21 |
+
outputPrice: 0.4,
|
22 |
+
},
|
23 |
{
|
24 |
name: "gpt-4.5-preview",
|
25 |
inputPrice: 75.0,
|