@pydantic/genai-prices 0.0.60 → 0.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +63 -35
- package/dist/index.cjs +3 -3
- package/dist/index.js +29 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -643,7 +643,14 @@ const Q = [
|
|
|
643
643
|
pricing_urls: ["https://aws.amazon.com/bedrock/pricing/"],
|
|
644
644
|
api_pattern: "https://bedrock-runtime\\.[a-z0-9-]+\\.amazonaws\\.com/",
|
|
645
645
|
provider_match: {
|
|
646
|
-
|
|
646
|
+
or: [
|
|
647
|
+
{
|
|
648
|
+
contains: "bedrock"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
contains: "amazon"
|
|
652
|
+
}
|
|
653
|
+
]
|
|
647
654
|
},
|
|
648
655
|
extractors: [
|
|
649
656
|
{
|
|
@@ -3567,6 +3574,21 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
3567
3574
|
}
|
|
3568
3575
|
}
|
|
3569
3576
|
},
|
|
3577
|
+
{
|
|
3578
|
+
id: "gemini-3.5-flash",
|
|
3579
|
+
name: "Gemini 3.5 Flash",
|
|
3580
|
+
description: "Google's most intelligent model built for speed, combining frontier intelligence with improved reasoning, coding, and multimodal understanding.",
|
|
3581
|
+
match: {
|
|
3582
|
+
starts_with: "gemini-3.5-flash"
|
|
3583
|
+
},
|
|
3584
|
+
context_window: 1e6,
|
|
3585
|
+
price_comments: "See https://ai.google.dev/gemini-api/docs/pricing. Standard tier pricing shown; Batch and Flex tiers offer 50% discount on input/output.",
|
|
3586
|
+
prices: {
|
|
3587
|
+
input_mtok: 1.5,
|
|
3588
|
+
cache_read_mtok: 0.15,
|
|
3589
|
+
output_mtok: 9
|
|
3590
|
+
}
|
|
3591
|
+
},
|
|
3570
3592
|
{
|
|
3571
3593
|
id: "gemini-embedding-001",
|
|
3572
3594
|
match: {
|
|
@@ -10137,12 +10159,18 @@ Compared to other leading proprietary and open-weights models Command A delivers
|
|
|
10137
10159
|
{
|
|
10138
10160
|
equals: "gpt-5.5-2026-04-23"
|
|
10139
10161
|
},
|
|
10162
|
+
{
|
|
10163
|
+
equals: "gpt-5.5-2026-04-24"
|
|
10164
|
+
},
|
|
10140
10165
|
{
|
|
10141
10166
|
equals: "gpt-5-5"
|
|
10142
10167
|
},
|
|
10143
10168
|
{
|
|
10144
10169
|
equals: "gpt-5-5-2026-04-23"
|
|
10145
10170
|
},
|
|
10171
|
+
{
|
|
10172
|
+
equals: "gpt-5-5-2026-04-24"
|
|
10173
|
+
},
|
|
10146
10174
|
{
|
|
10147
10175
|
equals: "gpt-5.5-chat"
|
|
10148
10176
|
},
|