@ai-sdk/google 4.0.0-beta.23 → 4.0.0-beta.25

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/index.mjs CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  } from "@ai-sdk/provider-utils";
8
8
 
9
9
  // src/version.ts
10
- var VERSION = true ? "4.0.0-beta.23" : "0.0.0-test";
10
+ var VERSION = true ? "4.0.0-beta.25" : "0.0.0-test";
11
11
 
12
12
  // src/google-generative-ai-embedding-model.ts
13
13
  import {
@@ -885,11 +885,7 @@ var googleLanguageModelOptions = lazySchema4(
885
885
  /**
886
886
  * Optional. The service tier to use for the request.
887
887
  */
888
- serviceTier: z4.enum([
889
- "SERVICE_TIER_STANDARD",
890
- "SERVICE_TIER_FLEX",
891
- "SERVICE_TIER_PRIORITY"
892
- ]).optional()
888
+ serviceTier: z4.enum(["standard", "flex", "priority"]).optional()
893
889
  })
894
890
  )
895
891
  );