@ai-sdk/anthropic 3.0.0-beta.40 → 3.0.0-beta.42
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 +17 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
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.
|
|
14
|
+
var VERSION = true ? "3.0.0-beta.42" : "0.0.0-test";
|
|
15
15
|
|
|
16
16
|
// src/anthropic-messages-language-model.ts
|
|
17
17
|
import {
|
|
@@ -3373,6 +3373,7 @@ function createAnthropic(options = {}) {
|
|
|
3373
3373
|
}
|
|
3374
3374
|
return createChatModel(modelId);
|
|
3375
3375
|
};
|
|
3376
|
+
provider.specificationVersion = "v3";
|
|
3376
3377
|
provider.languageModel = createChatModel;
|
|
3377
3378
|
provider.chat = createChatModel;
|
|
3378
3379
|
provider.messages = createChatModel;
|