Commit ·
fdef054
1
Parent(s): 18f8005
- 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-5-pro",
|
| 10 |
inputPrice: 15.00,
|
|
|
|
| 5 |
provider: "OpenAI",
|
| 6 |
uri: "https://openai.com/api/pricing/",
|
| 7 |
models: [
|
| 8 |
+
{
|
| 9 |
+
name: "gpt-5.2",
|
| 10 |
+
inputPrice: 1.75,
|
| 11 |
+
outputPrice: 14.0,
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
name: "gpt-5.2-chat-latest",
|
| 15 |
+
inputPrice: 1.75,
|
| 16 |
+
outputPrice: 14.0,
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
name: "gpt-5.2-pro",
|
| 20 |
+
inputPrice: 21.00,
|
| 21 |
+
outputPrice: 168.0,
|
| 22 |
+
},
|
| 23 |
{
|
| 24 |
name: "gpt-5-pro",
|
| 25 |
inputPrice: 15.00,
|