@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/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 ? "3.0.55" : "0.0.0-test";
10
+ var VERSION = true ? "3.0.57" : "0.0.0-test";
11
11
 
12
12
  // src/google-generative-ai-embedding-model.ts
13
13
  import {
@@ -828,11 +828,7 @@ var googleLanguageModelOptions = lazySchema4(
828
828
  /**
829
829
  * Optional. The service tier to use for the request.
830
830
  */
831
- serviceTier: z4.enum([
832
- "SERVICE_TIER_STANDARD",
833
- "SERVICE_TIER_FLEX",
834
- "SERVICE_TIER_PRIORITY"
835
- ]).optional()
831
+ serviceTier: z4.enum(["standard", "flex", "priority"]).optional()
836
832
  })
837
833
  )
838
834
  );