@ai-sdk/anthropic 3.0.0-beta.89 → 3.0.0-beta.90

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
@@ -11,7 +11,7 @@ import {
11
11
  } from "@ai-sdk/provider-utils";
12
12
 
13
13
  // src/version.ts
14
- var VERSION = true ? "3.0.0-beta.89" : "0.0.0-test";
14
+ var VERSION = true ? "3.0.0-beta.90" : "0.0.0-test";
15
15
 
16
16
  // src/anthropic-messages-language-model.ts
17
17
  import {
@@ -4025,6 +4025,7 @@ function createAnthropic(options = {}) {
4025
4025
  provider.embeddingModel = (modelId) => {
4026
4026
  throw new NoSuchModelError({ modelId, modelType: "embeddingModel" });
4027
4027
  };
4028
+ provider.textEmbeddingModel = provider.embeddingModel;
4028
4029
  provider.imageModel = (modelId) => {
4029
4030
  throw new NoSuchModelError({ modelId, modelType: "imageModel" });
4030
4031
  };