@ai-sdk/anthropic 3.0.2 → 3.0.3
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 +6 -0
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +4 -2
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +4 -2
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
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.
|
|
14
|
+
var VERSION = true ? "3.0.3" : "0.0.0-test";
|
|
15
15
|
|
|
16
16
|
// src/anthropic-messages-language-model.ts
|
|
17
17
|
import {
|
|
@@ -974,7 +974,8 @@ var webSearch_20250305InputSchema = lazySchema4(
|
|
|
974
974
|
var factory2 = createProviderToolFactoryWithOutputSchema({
|
|
975
975
|
id: "anthropic.web_search_20250305",
|
|
976
976
|
inputSchema: webSearch_20250305InputSchema,
|
|
977
|
-
outputSchema: webSearch_20250305OutputSchema
|
|
977
|
+
outputSchema: webSearch_20250305OutputSchema,
|
|
978
|
+
supportsDeferredResults: true
|
|
978
979
|
});
|
|
979
980
|
var webSearch_20250305 = (args = {}) => {
|
|
980
981
|
return factory2(args);
|
|
@@ -1034,7 +1035,8 @@ var webFetch_20250910InputSchema = lazySchema5(
|
|
|
1034
1035
|
var factory3 = createProviderToolFactoryWithOutputSchema2({
|
|
1035
1036
|
id: "anthropic.web_fetch_20250910",
|
|
1036
1037
|
inputSchema: webFetch_20250910InputSchema,
|
|
1037
|
-
outputSchema: webFetch_20250910OutputSchema
|
|
1038
|
+
outputSchema: webFetch_20250910OutputSchema,
|
|
1039
|
+
supportsDeferredResults: true
|
|
1038
1040
|
});
|
|
1039
1041
|
var webFetch_20250910 = (args = {}) => {
|
|
1040
1042
|
return factory3(args);
|