@ai-sdk/google 4.0.0-beta.23 → 4.0.0-beta.24
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 +6 -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 +1 -1
- package/src/google-generative-ai-options.ts +1 -7
package/dist/internal/index.mjs
CHANGED
|
@@ -674,11 +674,7 @@ var googleLanguageModelOptions = lazySchema2(
|
|
|
674
674
|
/**
|
|
675
675
|
* Optional. The service tier to use for the request.
|
|
676
676
|
*/
|
|
677
|
-
serviceTier: z2.enum([
|
|
678
|
-
"SERVICE_TIER_STANDARD",
|
|
679
|
-
"SERVICE_TIER_FLEX",
|
|
680
|
-
"SERVICE_TIER_PRIORITY"
|
|
681
|
-
]).optional()
|
|
677
|
+
serviceTier: z2.enum(["standard", "flex", "priority"]).optional()
|
|
682
678
|
})
|
|
683
679
|
)
|
|
684
680
|
);
|