@ai-sdk/anthropic 3.0.0-beta.64 → 3.0.0-beta.66

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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @ai-sdk/anthropic
2
2
 
3
+ ## 3.0.0-beta.66
4
+
5
+ ### Patch Changes
6
+
7
+ - 544d4e8: chore(specification): rename v3 provider defined tool to provider tool
8
+ - Updated dependencies [544d4e8]
9
+ - @ai-sdk/provider-utils@4.0.0-beta.40
10
+ - @ai-sdk/provider@3.0.0-beta.22
11
+
12
+ ## 3.0.0-beta.65
13
+
14
+ ### Patch Changes
15
+
16
+ - 954c356: feat(openai): allow custom names for provider-defined tools
17
+ - Updated dependencies [954c356]
18
+ - @ai-sdk/provider-utils@4.0.0-beta.39
19
+ - @ai-sdk/provider@3.0.0-beta.21
20
+
3
21
  ## 3.0.0-beta.64
4
22
 
5
23
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -95,7 +95,7 @@ declare const anthropicTools: {
95
95
  *
96
96
  * Tool name must be `bash`.
97
97
  */
98
- bash_20241022: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
98
+ bash_20241022: _ai_sdk_provider_utils.ProviderToolFactory<{
99
99
  command: string;
100
100
  restart?: boolean;
101
101
  }, {}>;
@@ -107,7 +107,7 @@ declare const anthropicTools: {
107
107
  *
108
108
  * Tool name must be `bash`.
109
109
  */
110
- bash_20250124: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
110
+ bash_20250124: _ai_sdk_provider_utils.ProviderToolFactory<{
111
111
  command: string;
112
112
  restart?: boolean;
113
113
  }, {}>;
@@ -121,7 +121,7 @@ declare const anthropicTools: {
121
121
  *
122
122
  * Tool name must be `code_execution`.
123
123
  */
124
- codeExecution_20250522: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
124
+ codeExecution_20250522: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
125
125
  code: string;
126
126
  }, {
127
127
  type: "code_execution_result";
@@ -148,7 +148,7 @@ declare const anthropicTools: {
148
148
  *
149
149
  * Tool name must be `code_execution`.
150
150
  */
151
- codeExecution_20250825: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
151
+ codeExecution_20250825: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
152
152
  type: "bash_code_execution";
153
153
  command: string;
154
154
  } | {
@@ -261,7 +261,7 @@ declare const anthropicTools: {
261
261
  * @param displayHeightPx - The height of the display being controlled by the model in pixels.
262
262
  * @param displayNumber - The display number to control (only relevant for X11 environments). If specified, the tool will be provided a display number in the tool definition.
263
263
  */
264
- computer_20241022: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
264
+ computer_20241022: _ai_sdk_provider_utils.ProviderToolFactory<{
265
265
  action: "key" | "type" | "mouse_move" | "left_click" | "left_click_drag" | "right_click" | "middle_click" | "double_click" | "screenshot" | "cursor_position";
266
266
  coordinate?: number[];
267
267
  text?: string;
@@ -282,7 +282,7 @@ declare const anthropicTools: {
282
282
  * @param displayHeightPx - The height of the display being controlled by the model in pixels.
283
283
  * @param displayNumber - The display number to control (only relevant for X11 environments). If specified, the tool will be provided a display number in the tool definition.
284
284
  */
285
- computer_20250124: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
285
+ computer_20250124: _ai_sdk_provider_utils.ProviderToolFactory<{
286
286
  action: "key" | "hold_key" | "type" | "cursor_position" | "mouse_move" | "left_mouse_down" | "left_mouse_up" | "left_click" | "left_click_drag" | "right_click" | "middle_click" | "double_click" | "triple_click" | "scroll" | "wait" | "screenshot";
287
287
  coordinate?: [number, number];
288
288
  duration?: number;
@@ -305,7 +305,7 @@ declare const anthropicTools: {
305
305
  *
306
306
  * Tool name must be `memory`.
307
307
  */
308
- memory_20250818: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
308
+ memory_20250818: _ai_sdk_provider_utils.ProviderToolFactory<{
309
309
  command: "view";
310
310
  path: string;
311
311
  view_range?: [number, number];
@@ -340,7 +340,7 @@ declare const anthropicTools: {
340
340
  *
341
341
  * Tool name must be `str_replace_editor`.
342
342
  */
343
- textEditor_20241022: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
343
+ textEditor_20241022: _ai_sdk_provider_utils.ProviderToolFactory<{
344
344
  command: "view" | "create" | "str_replace" | "insert" | "undo_edit";
345
345
  path: string;
346
346
  file_text?: string;
@@ -358,7 +358,7 @@ declare const anthropicTools: {
358
358
  *
359
359
  * Tool name must be `str_replace_editor`.
360
360
  */
361
- textEditor_20250124: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
361
+ textEditor_20250124: _ai_sdk_provider_utils.ProviderToolFactory<{
362
362
  command: "view" | "create" | "str_replace" | "insert" | "undo_edit";
363
363
  path: string;
364
364
  file_text?: string;
@@ -378,7 +378,7 @@ declare const anthropicTools: {
378
378
  *
379
379
  * @deprecated Use textEditor_20250728 instead
380
380
  */
381
- textEditor_20250429: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
381
+ textEditor_20250429: _ai_sdk_provider_utils.ProviderToolFactory<{
382
382
  command: "view" | "create" | "str_replace" | "insert";
383
383
  path: string;
384
384
  file_text?: string;
@@ -400,7 +400,7 @@ declare const anthropicTools: {
400
400
  *
401
401
  * @param maxCharacters - Optional maximum number of characters to view in the file
402
402
  */
403
- textEditor_20250728: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactory<{
403
+ textEditor_20250728: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactory<{
404
404
  command: "view" | "create" | "str_replace" | "insert";
405
405
  path: string;
406
406
  file_text?: string;
@@ -430,7 +430,7 @@ declare const anthropicTools: {
430
430
  * @param citations - Unlike web search where citations are always enabled, citations are optional for web fetch. Set "citations": {"enabled": true} to enable Claude to cite specific passages from fetched documents.
431
431
  * @param maxContentTokens - The max_content_tokens parameter limits the amount of content that will be included in the context.
432
432
  */
433
- webFetch_20250910: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
433
+ webFetch_20250910: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
434
434
  url: string;
435
435
  }, {
436
436
  type: "web_fetch_result";
@@ -493,7 +493,7 @@ declare const anthropicTools: {
493
493
  * @param blockedDomains - Optional list of domains that Claude should avoid when searching.
494
494
  * @param userLocation - Optional user location information to provide geographically relevant search results.
495
495
  */
496
- webSearch_20250305: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
496
+ webSearch_20250305: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
497
497
  query: string;
498
498
  }, {
499
499
  type: "web_search_result";
package/dist/index.d.ts CHANGED
@@ -95,7 +95,7 @@ declare const anthropicTools: {
95
95
  *
96
96
  * Tool name must be `bash`.
97
97
  */
98
- bash_20241022: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
98
+ bash_20241022: _ai_sdk_provider_utils.ProviderToolFactory<{
99
99
  command: string;
100
100
  restart?: boolean;
101
101
  }, {}>;
@@ -107,7 +107,7 @@ declare const anthropicTools: {
107
107
  *
108
108
  * Tool name must be `bash`.
109
109
  */
110
- bash_20250124: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
110
+ bash_20250124: _ai_sdk_provider_utils.ProviderToolFactory<{
111
111
  command: string;
112
112
  restart?: boolean;
113
113
  }, {}>;
@@ -121,7 +121,7 @@ declare const anthropicTools: {
121
121
  *
122
122
  * Tool name must be `code_execution`.
123
123
  */
124
- codeExecution_20250522: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
124
+ codeExecution_20250522: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
125
125
  code: string;
126
126
  }, {
127
127
  type: "code_execution_result";
@@ -148,7 +148,7 @@ declare const anthropicTools: {
148
148
  *
149
149
  * Tool name must be `code_execution`.
150
150
  */
151
- codeExecution_20250825: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
151
+ codeExecution_20250825: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
152
152
  type: "bash_code_execution";
153
153
  command: string;
154
154
  } | {
@@ -261,7 +261,7 @@ declare const anthropicTools: {
261
261
  * @param displayHeightPx - The height of the display being controlled by the model in pixels.
262
262
  * @param displayNumber - The display number to control (only relevant for X11 environments). If specified, the tool will be provided a display number in the tool definition.
263
263
  */
264
- computer_20241022: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
264
+ computer_20241022: _ai_sdk_provider_utils.ProviderToolFactory<{
265
265
  action: "key" | "type" | "mouse_move" | "left_click" | "left_click_drag" | "right_click" | "middle_click" | "double_click" | "screenshot" | "cursor_position";
266
266
  coordinate?: number[];
267
267
  text?: string;
@@ -282,7 +282,7 @@ declare const anthropicTools: {
282
282
  * @param displayHeightPx - The height of the display being controlled by the model in pixels.
283
283
  * @param displayNumber - The display number to control (only relevant for X11 environments). If specified, the tool will be provided a display number in the tool definition.
284
284
  */
285
- computer_20250124: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
285
+ computer_20250124: _ai_sdk_provider_utils.ProviderToolFactory<{
286
286
  action: "key" | "hold_key" | "type" | "cursor_position" | "mouse_move" | "left_mouse_down" | "left_mouse_up" | "left_click" | "left_click_drag" | "right_click" | "middle_click" | "double_click" | "triple_click" | "scroll" | "wait" | "screenshot";
287
287
  coordinate?: [number, number];
288
288
  duration?: number;
@@ -305,7 +305,7 @@ declare const anthropicTools: {
305
305
  *
306
306
  * Tool name must be `memory`.
307
307
  */
308
- memory_20250818: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
308
+ memory_20250818: _ai_sdk_provider_utils.ProviderToolFactory<{
309
309
  command: "view";
310
310
  path: string;
311
311
  view_range?: [number, number];
@@ -340,7 +340,7 @@ declare const anthropicTools: {
340
340
  *
341
341
  * Tool name must be `str_replace_editor`.
342
342
  */
343
- textEditor_20241022: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
343
+ textEditor_20241022: _ai_sdk_provider_utils.ProviderToolFactory<{
344
344
  command: "view" | "create" | "str_replace" | "insert" | "undo_edit";
345
345
  path: string;
346
346
  file_text?: string;
@@ -358,7 +358,7 @@ declare const anthropicTools: {
358
358
  *
359
359
  * Tool name must be `str_replace_editor`.
360
360
  */
361
- textEditor_20250124: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
361
+ textEditor_20250124: _ai_sdk_provider_utils.ProviderToolFactory<{
362
362
  command: "view" | "create" | "str_replace" | "insert" | "undo_edit";
363
363
  path: string;
364
364
  file_text?: string;
@@ -378,7 +378,7 @@ declare const anthropicTools: {
378
378
  *
379
379
  * @deprecated Use textEditor_20250728 instead
380
380
  */
381
- textEditor_20250429: _ai_sdk_provider_utils.ProviderDefinedToolFactory<{
381
+ textEditor_20250429: _ai_sdk_provider_utils.ProviderToolFactory<{
382
382
  command: "view" | "create" | "str_replace" | "insert";
383
383
  path: string;
384
384
  file_text?: string;
@@ -400,7 +400,7 @@ declare const anthropicTools: {
400
400
  *
401
401
  * @param maxCharacters - Optional maximum number of characters to view in the file
402
402
  */
403
- textEditor_20250728: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactory<{
403
+ textEditor_20250728: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactory<{
404
404
  command: "view" | "create" | "str_replace" | "insert";
405
405
  path: string;
406
406
  file_text?: string;
@@ -430,7 +430,7 @@ declare const anthropicTools: {
430
430
  * @param citations - Unlike web search where citations are always enabled, citations are optional for web fetch. Set "citations": {"enabled": true} to enable Claude to cite specific passages from fetched documents.
431
431
  * @param maxContentTokens - The max_content_tokens parameter limits the amount of content that will be included in the context.
432
432
  */
433
- webFetch_20250910: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
433
+ webFetch_20250910: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
434
434
  url: string;
435
435
  }, {
436
436
  type: "web_fetch_result";
@@ -493,7 +493,7 @@ declare const anthropicTools: {
493
493
  * @param blockedDomains - Optional list of domains that Claude should avoid when searching.
494
494
  * @param userLocation - Optional user location information to provide geographically relevant search results.
495
495
  */
496
- webSearch_20250305: (args?: Parameters<_ai_sdk_provider_utils.ProviderDefinedToolFactoryWithOutputSchema<{
496
+ webSearch_20250305: (args?: Parameters<_ai_sdk_provider_utils.ProviderToolFactoryWithOutputSchema<{
497
497
  query: string;
498
498
  }, {
499
499
  type: "web_search_result";
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ var import_provider4 = require("@ai-sdk/provider");
31
31
  var import_provider_utils20 = require("@ai-sdk/provider-utils");
32
32
 
33
33
  // src/version.ts
34
- var VERSION = true ? "3.0.0-beta.64" : "0.0.0-test";
34
+ var VERSION = true ? "3.0.0-beta.66" : "0.0.0-test";
35
35
 
36
36
  // src/anthropic-messages-language-model.ts
37
37
  var import_provider3 = require("@ai-sdk/provider");
@@ -738,9 +738,8 @@ var textEditor_20250728InputSchema = (0, import_provider_utils4.lazySchema)(
738
738
  })
739
739
  )
740
740
  );
741
- var factory = (0, import_provider_utils3.createProviderDefinedToolFactory)({
741
+ var factory = (0, import_provider_utils3.createProviderToolFactory)({
742
742
  id: "anthropic.text_editor_20250728",
743
- name: "str_replace_based_edit_tool",
744
743
  inputSchema: textEditor_20250728InputSchema
745
744
  });
746
745
  var textEditor_20250728 = (args = {}) => {
@@ -786,9 +785,8 @@ var webSearch_20250305InputSchema = (0, import_provider_utils5.lazySchema)(
786
785
  })
787
786
  )
788
787
  );
789
- var factory2 = (0, import_provider_utils5.createProviderDefinedToolFactoryWithOutputSchema)({
788
+ var factory2 = (0, import_provider_utils5.createProviderToolFactoryWithOutputSchema)({
790
789
  id: "anthropic.web_search_20250305",
791
- name: "web_search",
792
790
  inputSchema: webSearch_20250305InputSchema,
793
791
  outputSchema: webSearch_20250305OutputSchema
794
792
  });
@@ -843,9 +841,8 @@ var webFetch_20250910InputSchema = (0, import_provider_utils6.lazySchema)(
843
841
  })
844
842
  )
845
843
  );
846
- var factory3 = (0, import_provider_utils6.createProviderDefinedToolFactoryWithOutputSchema)({
844
+ var factory3 = (0, import_provider_utils6.createProviderToolFactoryWithOutputSchema)({
847
845
  id: "anthropic.web_fetch_20250910",
848
- name: "web_fetch",
849
846
  inputSchema: webFetch_20250910InputSchema,
850
847
  outputSchema: webFetch_20250910OutputSchema
851
848
  });
@@ -884,7 +881,7 @@ async function prepareTools({
884
881
  });
885
882
  break;
886
883
  }
887
- case "provider-defined": {
884
+ case "provider": {
888
885
  switch (tool.id) {
889
886
  case "anthropic.code_execution_20250522": {
890
887
  betas.add("code-execution-2025-05-22");
@@ -1122,9 +1119,8 @@ var codeExecution_20250522InputSchema = (0, import_provider_utils8.lazySchema)(
1122
1119
  })
1123
1120
  )
1124
1121
  );
1125
- var factory4 = (0, import_provider_utils8.createProviderDefinedToolFactoryWithOutputSchema)({
1122
+ var factory4 = (0, import_provider_utils8.createProviderToolFactoryWithOutputSchema)({
1126
1123
  id: "anthropic.code_execution_20250522",
1127
- name: "code_execution",
1128
1124
  inputSchema: codeExecution_20250522InputSchema,
1129
1125
  outputSchema: codeExecution_20250522OutputSchema
1130
1126
  });
@@ -1211,9 +1207,8 @@ var codeExecution_20250825InputSchema = (0, import_provider_utils9.lazySchema)(
1211
1207
  ])
1212
1208
  )
1213
1209
  );
1214
- var factory5 = (0, import_provider_utils9.createProviderDefinedToolFactoryWithOutputSchema)({
1210
+ var factory5 = (0, import_provider_utils9.createProviderToolFactoryWithOutputSchema)({
1215
1211
  id: "anthropic.code_execution_20250825",
1216
- name: "code_execution",
1217
1212
  inputSchema: codeExecution_20250825InputSchema,
1218
1213
  outputSchema: codeExecution_20250825OutputSchema
1219
1214
  });
@@ -2089,7 +2084,7 @@ var AnthropicMessagesLanguageModel = class {
2089
2084
  betas.add("skills-2025-10-02");
2090
2085
  betas.add("files-api-2025-04-14");
2091
2086
  if (!(tools == null ? void 0 : tools.some(
2092
- (tool) => tool.type === "provider-defined" && tool.id === "anthropic.code_execution_20250825"
2087
+ (tool) => tool.type === "provider" && tool.id === "anthropic.code_execution_20250825"
2093
2088
  ))) {
2094
2089
  warnings.push({
2095
2090
  type: "other",
@@ -3104,9 +3099,8 @@ var bash_20241022InputSchema = (0, import_provider_utils12.lazySchema)(
3104
3099
  })
3105
3100
  )
3106
3101
  );
3107
- var bash_20241022 = (0, import_provider_utils12.createProviderDefinedToolFactory)({
3102
+ var bash_20241022 = (0, import_provider_utils12.createProviderToolFactory)({
3108
3103
  id: "anthropic.bash_20241022",
3109
- name: "bash",
3110
3104
  inputSchema: bash_20241022InputSchema
3111
3105
  });
3112
3106
 
@@ -3121,9 +3115,8 @@ var bash_20250124InputSchema = (0, import_provider_utils13.lazySchema)(
3121
3115
  })
3122
3116
  )
3123
3117
  );
3124
- var bash_20250124 = (0, import_provider_utils13.createProviderDefinedToolFactory)({
3118
+ var bash_20250124 = (0, import_provider_utils13.createProviderToolFactory)({
3125
3119
  id: "anthropic.bash_20250124",
3126
- name: "bash",
3127
3120
  inputSchema: bash_20250124InputSchema
3128
3121
  });
3129
3122
 
@@ -3150,9 +3143,8 @@ var computer_20241022InputSchema = (0, import_provider_utils14.lazySchema)(
3150
3143
  })
3151
3144
  )
3152
3145
  );
3153
- var computer_20241022 = (0, import_provider_utils14.createProviderDefinedToolFactory)({
3146
+ var computer_20241022 = (0, import_provider_utils14.createProviderToolFactory)({
3154
3147
  id: "anthropic.computer_20241022",
3155
- name: "computer",
3156
3148
  inputSchema: computer_20241022InputSchema
3157
3149
  });
3158
3150
 
@@ -3189,9 +3181,8 @@ var computer_20250124InputSchema = (0, import_provider_utils15.lazySchema)(
3189
3181
  })
3190
3182
  )
3191
3183
  );
3192
- var computer_20250124 = (0, import_provider_utils15.createProviderDefinedToolFactory)({
3184
+ var computer_20250124 = (0, import_provider_utils15.createProviderToolFactory)({
3193
3185
  id: "anthropic.computer_20250124",
3194
- name: "computer",
3195
3186
  inputSchema: computer_20250124InputSchema
3196
3187
  });
3197
3188
 
@@ -3235,9 +3226,8 @@ var memory_20250818InputSchema = (0, import_provider_utils16.lazySchema)(
3235
3226
  ])
3236
3227
  )
3237
3228
  );
3238
- var memory_20250818 = (0, import_provider_utils16.createProviderDefinedToolFactory)({
3229
+ var memory_20250818 = (0, import_provider_utils16.createProviderToolFactory)({
3239
3230
  id: "anthropic.memory_20250818",
3240
- name: "memory",
3241
3231
  inputSchema: memory_20250818InputSchema
3242
3232
  });
3243
3233
 
@@ -3257,9 +3247,8 @@ var textEditor_20241022InputSchema = (0, import_provider_utils17.lazySchema)(
3257
3247
  })
3258
3248
  )
3259
3249
  );
3260
- var textEditor_20241022 = (0, import_provider_utils17.createProviderDefinedToolFactory)({
3250
+ var textEditor_20241022 = (0, import_provider_utils17.createProviderToolFactory)({
3261
3251
  id: "anthropic.text_editor_20241022",
3262
- name: "str_replace_editor",
3263
3252
  inputSchema: textEditor_20241022InputSchema
3264
3253
  });
3265
3254
 
@@ -3279,9 +3268,8 @@ var textEditor_20250124InputSchema = (0, import_provider_utils18.lazySchema)(
3279
3268
  })
3280
3269
  )
3281
3270
  );
3282
- var textEditor_20250124 = (0, import_provider_utils18.createProviderDefinedToolFactory)({
3271
+ var textEditor_20250124 = (0, import_provider_utils18.createProviderToolFactory)({
3283
3272
  id: "anthropic.text_editor_20250124",
3284
- name: "str_replace_editor",
3285
3273
  inputSchema: textEditor_20250124InputSchema
3286
3274
  });
3287
3275
 
@@ -3301,9 +3289,8 @@ var textEditor_20250429InputSchema = (0, import_provider_utils19.lazySchema)(
3301
3289
  })
3302
3290
  )
3303
3291
  );
3304
- var textEditor_20250429 = (0, import_provider_utils19.createProviderDefinedToolFactory)({
3292
+ var textEditor_20250429 = (0, import_provider_utils19.createProviderToolFactory)({
3305
3293
  id: "anthropic.text_editor_20250429",
3306
- name: "str_replace_based_edit_tool",
3307
3294
  inputSchema: textEditor_20250429InputSchema
3308
3295
  });
3309
3296