@ai-sdk/anthropic 4.0.0-beta.41 → 4.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 +13 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/internal/index.js +1 -1
- package/dist/internal/index.js.map +1 -1
- package/package.json +2 -2
- package/src/anthropic-language-model.ts +1 -1
- package/src/anthropic-provider.ts +1 -1
- package/src/convert-to-anthropic-prompt.ts +1 -1
- package/src/index.ts +1 -1
- package/src/internal/index.ts +1 -1
- /package/src/{anthropic-options.ts → anthropic-language-model-options.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @ai-sdk/anthropic
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.42
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 04e9009: chore: make provider implementations code patterns more consistent, including renaming certain exported symbols
|
|
8
|
+
|
|
9
|
+
For all externally exported symbols that were renamed, the old names continue to work via deprecated aliases.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [08d2129]
|
|
14
|
+
- @ai-sdk/provider-utils@5.0.0-beta.30
|
|
15
|
+
|
|
3
16
|
## 4.0.0-beta.41
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -875,7 +875,7 @@ var anthropicReasoningMetadataSchema = lazySchema3(
|
|
|
875
875
|
)
|
|
876
876
|
);
|
|
877
877
|
|
|
878
|
-
// src/anthropic-options.ts
|
|
878
|
+
// src/anthropic-language-model-options.ts
|
|
879
879
|
import { z as z4 } from "zod/v4";
|
|
880
880
|
var anthropicFilePartProviderOptions = z4.object({
|
|
881
881
|
/**
|
|
@@ -5741,7 +5741,7 @@ var AnthropicSkills = class {
|
|
|
5741
5741
|
};
|
|
5742
5742
|
|
|
5743
5743
|
// src/version.ts
|
|
5744
|
-
var VERSION = true ? "4.0.0-beta.
|
|
5744
|
+
var VERSION = true ? "4.0.0-beta.42" : "0.0.0-test";
|
|
5745
5745
|
|
|
5746
5746
|
// src/anthropic-provider.ts
|
|
5747
5747
|
function createAnthropic(options = {}) {
|