@ai-sdk/google 3.0.55 → 3.0.57
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/CHANGELOG.md +13 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -6
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +1 -5
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +1 -5
- package/dist/internal/index.mjs.map +1 -1
- package/docs/15-google-generative-ai.mdx +3 -3
- package/package.json +4 -4
- package/src/google-generative-ai-options.ts +1 -7
package/dist/internal/index.mjs
CHANGED
|
@@ -617,11 +617,7 @@ var googleLanguageModelOptions = lazySchema2(
|
|
|
617
617
|
/**
|
|
618
618
|
* Optional. The service tier to use for the request.
|
|
619
619
|
*/
|
|
620
|
-
serviceTier: z2.enum([
|
|
621
|
-
"SERVICE_TIER_STANDARD",
|
|
622
|
-
"SERVICE_TIER_FLEX",
|
|
623
|
-
"SERVICE_TIER_PRIORITY"
|
|
624
|
-
]).optional()
|
|
620
|
+
serviceTier: z2.enum(["standard", "flex", "priority"]).optional()
|
|
625
621
|
})
|
|
626
622
|
)
|
|
627
623
|
);
|