Skip to content

Commit 0ea16d4

Browse files
committed
register default model prices
1 parent 430c0e0 commit 0ea16d4

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

internal-packages/llm-pricing/src/default-model-prices.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3834,5 +3834,30 @@
38343834
}
38353835
}
38363836
]
3837+
},
3838+
{
3839+
"id": "029e6695-ff24-47f0-b37b-7285fb2e5785",
3840+
"modelName": "gemini-live-2.5-flash-native-audio",
3841+
"matchPattern": "(?i)^(google\/)?(gemini-live-2.5-flash-native-audio)$",
3842+
"createdAt": "2026-03-16T00:00:00.000Z",
3843+
"updatedAt": "2026-03-16T00:00:00.000Z",
3844+
"tokenizerConfig": null,
3845+
"tokenizerId": null,
3846+
"pricingTiers": [
3847+
{
3848+
"id": "029e6695-ff24-47f0-b37b-7285fb2e5785_tier_default",
3849+
"name": "Standard",
3850+
"isDefault": true,
3851+
"priority": 0,
3852+
"conditions": [],
3853+
"prices": {
3854+
"input_text": 0.5e-6,
3855+
"input_audio": 3e-6,
3856+
"input_image": 3e-6,
3857+
"output_text": 2e-6,
3858+
"output_audio": 12e-6
3859+
}
3860+
}
3861+
]
38373862
}
38383863
]

internal-packages/llm-pricing/src/defaultPrices.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2980,5 +2980,25 @@ export const defaultModelPrices: DefaultModelDefinition[] = [
29802980
}
29812981
}
29822982
]
2983+
},
2984+
{
2985+
"modelName": "gemini-live-2.5-flash-native-audio",
2986+
"matchPattern": "(?i)^(google/)?(gemini-live-2.5-flash-native-audio)$",
2987+
"startDate": "2026-03-16T00:00:00.000Z",
2988+
"pricingTiers": [
2989+
{
2990+
"name": "Standard",
2991+
"isDefault": true,
2992+
"priority": 0,
2993+
"conditions": [],
2994+
"prices": {
2995+
"input_text": 5e-7,
2996+
"input_audio": 0.000003,
2997+
"input_image": 0.000003,
2998+
"output_text": 0.000002,
2999+
"output_audio": 0.000012
3000+
}
3001+
}
3002+
]
29833003
}
29843004
];

0 commit comments

Comments
 (0)