@ai-sdk/anthropic 3.0.0-beta.34 → 3.0.0-beta.35
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.d.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +8 -0
- package/dist/internal/index.d.ts +8 -0
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -114,6 +114,10 @@ declare const anthropicTools: {
|
|
|
114
114
|
new_str: string;
|
|
115
115
|
}, {
|
|
116
116
|
type: "bash_code_execution_result";
|
|
117
|
+
content: Array<{
|
|
118
|
+
type: "bash_code_execution_output";
|
|
119
|
+
file_id: string;
|
|
120
|
+
}>;
|
|
117
121
|
stdout: string;
|
|
118
122
|
stderr: string;
|
|
119
123
|
return_code: number;
|
|
@@ -160,6 +164,10 @@ declare const anthropicTools: {
|
|
|
160
164
|
new_str: string;
|
|
161
165
|
}, {
|
|
162
166
|
type: "bash_code_execution_result";
|
|
167
|
+
content: Array<{
|
|
168
|
+
type: "bash_code_execution_output";
|
|
169
|
+
file_id: string;
|
|
170
|
+
}>;
|
|
163
171
|
stdout: string;
|
|
164
172
|
stderr: string;
|
|
165
173
|
return_code: number;
|
package/dist/internal/index.d.ts
CHANGED
|
@@ -114,6 +114,10 @@ declare const anthropicTools: {
|
|
|
114
114
|
new_str: string;
|
|
115
115
|
}, {
|
|
116
116
|
type: "bash_code_execution_result";
|
|
117
|
+
content: Array<{
|
|
118
|
+
type: "bash_code_execution_output";
|
|
119
|
+
file_id: string;
|
|
120
|
+
}>;
|
|
117
121
|
stdout: string;
|
|
118
122
|
stderr: string;
|
|
119
123
|
return_code: number;
|
|
@@ -160,6 +164,10 @@ declare const anthropicTools: {
|
|
|
160
164
|
new_str: string;
|
|
161
165
|
}, {
|
|
162
166
|
type: "bash_code_execution_result";
|
|
167
|
+
content: Array<{
|
|
168
|
+
type: "bash_code_execution_output";
|
|
169
|
+
file_id: string;
|
|
170
|
+
}>;
|
|
163
171
|
stdout: string;
|
|
164
172
|
stderr: string;
|
|
165
173
|
return_code: number;
|