Commit
·
7dfbc6e
1
Parent(s):
a549642
- src/lib/data.ts +21 -1
src/lib/data.ts
CHANGED
|
@@ -5,6 +5,26 @@ export const mockData: Provider[] = [
|
|
| 5 |
provider: "OpenAI",
|
| 6 |
uri: "https://openai.com/api/pricing/",
|
| 7 |
models: [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
{
|
| 9 |
name: "o3",
|
| 10 |
inputPrice: 2.0,
|
|
@@ -1570,7 +1590,7 @@ export const mockData: Provider[] = [
|
|
| 1570 |
provider: "DeepInfra",
|
| 1571 |
uri: "https://deepinfra.com/models/text-generation/",
|
| 1572 |
models: [
|
| 1573 |
-
|
| 1574 |
name: "GPT OSS 20B 128k",
|
| 1575 |
inputPrice: 0.04,
|
| 1576 |
outputPrice: 0.16,
|
|
|
|
| 5 |
provider: "OpenAI",
|
| 6 |
uri: "https://openai.com/api/pricing/",
|
| 7 |
models: [
|
| 8 |
+
{
|
| 9 |
+
name: "gpt-5",
|
| 10 |
+
inputPrice: 1.25,
|
| 11 |
+
outputPrice: 10.0,
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
name: "gpt-5-mini",
|
| 15 |
+
inputPrice: 0.25,
|
| 16 |
+
outputPrice: 2.0,
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
name: "gpt-5-nano",
|
| 20 |
+
inputPrice: 0.05,
|
| 21 |
+
outputPrice: 0.40,
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
name: "gpt-5-chat-latest",
|
| 25 |
+
inputPrice: 1.25,
|
| 26 |
+
outputPrice: 10.0,
|
| 27 |
+
},
|
| 28 |
{
|
| 29 |
name: "o3",
|
| 30 |
inputPrice: 2.0,
|
|
|
|
| 1590 |
provider: "DeepInfra",
|
| 1591 |
uri: "https://deepinfra.com/models/text-generation/",
|
| 1592 |
models: [
|
| 1593 |
+
{
|
| 1594 |
name: "GPT OSS 20B 128k",
|
| 1595 |
inputPrice: 0.04,
|
| 1596 |
outputPrice: 0.16,
|