@anthropic-ai/sdk 0.55.1 → 0.56.0

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.
Files changed (85) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +24 -24
  3. package/client.d.mts +2 -0
  4. package/client.d.mts.map +1 -1
  5. package/client.d.ts +2 -0
  6. package/client.d.ts.map +1 -1
  7. package/client.js.map +1 -1
  8. package/client.mjs.map +1 -1
  9. package/core/streaming.d.mts +5 -3
  10. package/core/streaming.d.mts.map +1 -1
  11. package/core/streaming.d.ts +5 -3
  12. package/core/streaming.d.ts.map +1 -1
  13. package/core/streaming.js +18 -12
  14. package/core/streaming.js.map +1 -1
  15. package/core/streaming.mjs +18 -12
  16. package/core/streaming.mjs.map +1 -1
  17. package/internal/parse.js +2 -2
  18. package/internal/parse.js.map +1 -1
  19. package/internal/parse.mjs +2 -2
  20. package/internal/parse.mjs.map +1 -1
  21. package/internal/request-options.d.mts +42 -0
  22. package/internal/request-options.d.mts.map +1 -1
  23. package/internal/request-options.d.ts +42 -0
  24. package/internal/request-options.d.ts.map +1 -1
  25. package/internal/request-options.js.map +1 -1
  26. package/internal/request-options.mjs.map +1 -1
  27. package/package.json +1 -1
  28. package/resources/beta/beta.d.mts +2 -2
  29. package/resources/beta/beta.d.mts.map +1 -1
  30. package/resources/beta/beta.d.ts +2 -2
  31. package/resources/beta/beta.d.ts.map +1 -1
  32. package/resources/beta/beta.js.map +1 -1
  33. package/resources/beta/beta.mjs.map +1 -1
  34. package/resources/beta/index.d.mts +1 -1
  35. package/resources/beta/index.d.mts.map +1 -1
  36. package/resources/beta/index.d.ts +1 -1
  37. package/resources/beta/index.d.ts.map +1 -1
  38. package/resources/beta/index.js.map +1 -1
  39. package/resources/beta/index.mjs.map +1 -1
  40. package/resources/beta/messages/batches.d.mts +1 -1
  41. package/resources/beta/messages/batches.d.ts +1 -1
  42. package/resources/beta/messages/batches.js +1 -1
  43. package/resources/beta/messages/batches.mjs +1 -1
  44. package/resources/beta/messages/index.d.mts +1 -1
  45. package/resources/beta/messages/index.d.mts.map +1 -1
  46. package/resources/beta/messages/index.d.ts +1 -1
  47. package/resources/beta/messages/index.d.ts.map +1 -1
  48. package/resources/beta/messages/index.js.map +1 -1
  49. package/resources/beta/messages/index.mjs.map +1 -1
  50. package/resources/beta/messages/messages.d.mts +58 -13
  51. package/resources/beta/messages/messages.d.mts.map +1 -1
  52. package/resources/beta/messages/messages.d.ts +58 -13
  53. package/resources/beta/messages/messages.d.ts.map +1 -1
  54. package/resources/beta/messages/messages.js +1 -0
  55. package/resources/beta/messages/messages.js.map +1 -1
  56. package/resources/beta/messages/messages.mjs +1 -0
  57. package/resources/beta/messages/messages.mjs.map +1 -1
  58. package/resources/messages/batches.d.mts +1 -1
  59. package/resources/messages/batches.d.ts +1 -1
  60. package/resources/messages/batches.js +1 -1
  61. package/resources/messages/batches.mjs +1 -1
  62. package/resources/messages/messages.d.mts +22 -6
  63. package/resources/messages/messages.d.mts.map +1 -1
  64. package/resources/messages/messages.d.ts +22 -6
  65. package/resources/messages/messages.d.ts.map +1 -1
  66. package/resources/messages/messages.js +1 -0
  67. package/resources/messages/messages.js.map +1 -1
  68. package/resources/messages/messages.mjs +1 -0
  69. package/resources/messages/messages.mjs.map +1 -1
  70. package/src/client.ts +2 -0
  71. package/src/core/streaming.ts +24 -10
  72. package/src/internal/parse.ts +2 -2
  73. package/src/internal/request-options.ts +53 -0
  74. package/src/resources/beta/beta.ts +6 -0
  75. package/src/resources/beta/index.ts +3 -0
  76. package/src/resources/beta/messages/batches.ts +1 -1
  77. package/src/resources/beta/messages/index.ts +3 -0
  78. package/src/resources/beta/messages/messages.ts +102 -29
  79. package/src/resources/messages/batches.ts +1 -1
  80. package/src/resources/messages/messages.ts +31 -14
  81. package/src/version.ts +1 -1
  82. package/version.d.mts +1 -1
  83. package/version.d.ts +1 -1
  84. package/version.js +1 -1
  85. package/version.mjs +1 -1
@@ -40,6 +40,7 @@ const DEPRECATED_MODELS: {
40
40
  'claude-instant-1.1-100k': 'November 6th, 2024',
41
41
  'claude-instant-1.2': 'November 6th, 2024',
42
42
  'claude-3-sonnet-20240229': 'July 21st, 2025',
43
+ 'claude-3-opus-20240229': 'January 5th, 2026',
43
44
  'claude-2.1': 'July 21st, 2025',
44
45
  'claude-2.0': 'July 21st, 2025',
45
46
  };
@@ -62,7 +63,7 @@ export class Messages extends APIResource {
62
63
  * const betaMessage = await client.beta.messages.create({
63
64
  * max_tokens: 1024,
64
65
  * messages: [{ content: 'Hello, world', role: 'user' }],
65
- * model: 'claude-3-7-sonnet-20250219',
66
+ * model: 'claude-sonnet-4-20250514',
66
67
  * });
67
68
  * ```
68
69
  */
@@ -277,6 +278,38 @@ export interface BetaCitationPageLocationParam {
277
278
  type: 'page_location';
278
279
  }
279
280
 
281
+ export interface BetaCitationSearchResultLocation {
282
+ cited_text: string;
283
+
284
+ end_block_index: number;
285
+
286
+ search_result_index: number;
287
+
288
+ source: string;
289
+
290
+ start_block_index: number;
291
+
292
+ title: string | null;
293
+
294
+ type: 'search_result_location';
295
+ }
296
+
297
+ export interface BetaCitationSearchResultLocationParam {
298
+ cited_text: string;
299
+
300
+ end_block_index: number;
301
+
302
+ search_result_index: number;
303
+
304
+ source: string;
305
+
306
+ start_block_index: number;
307
+
308
+ title: string | null;
309
+
310
+ type: 'search_result_location';
311
+ }
312
+
280
313
  export interface BetaCitationWebSearchResultLocationParam {
281
314
  cited_text: string;
282
315
 
@@ -298,7 +331,8 @@ export interface BetaCitationsDelta {
298
331
  | BetaCitationCharLocation
299
332
  | BetaCitationPageLocation
300
333
  | BetaCitationContentBlockLocation
301
- | BetaCitationsWebSearchResultLocation;
334
+ | BetaCitationsWebSearchResultLocation
335
+ | BetaCitationSearchResultLocation;
302
336
 
303
337
  type: 'citations_delta';
304
338
  }
@@ -459,32 +493,33 @@ export interface BetaContainerUploadBlockParam {
459
493
  */
460
494
  export type BetaContentBlock =
461
495
  | BetaTextBlock
496
+ | BetaThinkingBlock
497
+ | BetaRedactedThinkingBlock
462
498
  | BetaToolUseBlock
463
499
  | BetaServerToolUseBlock
464
500
  | BetaWebSearchToolResultBlock
465
501
  | BetaCodeExecutionToolResultBlock
466
502
  | BetaMCPToolUseBlock
467
503
  | BetaMCPToolResultBlock
468
- | BetaContainerUploadBlock
469
- | BetaThinkingBlock
470
- | BetaRedactedThinkingBlock;
504
+ | BetaContainerUploadBlock;
471
505
 
472
506
  /**
473
507
  * Regular text content.
474
508
  */
475
509
  export type BetaContentBlockParam =
476
- | BetaServerToolUseBlockParam
477
- | BetaWebSearchToolResultBlockParam
478
- | BetaCodeExecutionToolResultBlockParam
479
- | BetaMCPToolUseBlockParam
480
- | BetaRequestMCPToolResultBlockParam
481
510
  | BetaTextBlockParam
482
511
  | BetaImageBlockParam
483
- | BetaToolUseBlockParam
484
- | BetaToolResultBlockParam
485
512
  | BetaRequestDocumentBlock
513
+ | BetaSearchResultBlockParam
486
514
  | BetaThinkingBlockParam
487
515
  | BetaRedactedThinkingBlockParam
516
+ | BetaToolUseBlockParam
517
+ | BetaToolResultBlockParam
518
+ | BetaServerToolUseBlockParam
519
+ | BetaWebSearchToolResultBlockParam
520
+ | BetaCodeExecutionToolResultBlockParam
521
+ | BetaMCPToolUseBlockParam
522
+ | BetaRequestMCPToolResultBlockParam
488
523
  | BetaContainerUploadBlockParam;
489
524
 
490
525
  export interface BetaContentBlockSource {
@@ -645,6 +680,10 @@ export interface BetaMessage {
645
680
  * - `"max_tokens"`: we exceeded the requested `max_tokens` or the model's maximum
646
681
  * - `"stop_sequence"`: one of your provided custom `stop_sequences` was generated
647
682
  * - `"tool_use"`: the model invoked one or more tools
683
+ * - `"pause_turn"`: we paused a long-running turn. You may provide the response
684
+ * back as-is in a subsequent request to let the model continue.
685
+ * - `"refusal"`: when streaming classifiers intervene to handle potential policy
686
+ * violations
648
687
  *
649
688
  * In non-streaming mode this value is always non-null. In streaming mode, it is
650
689
  * null in the `message_start` event and non-null otherwise.
@@ -767,15 +806,15 @@ export interface BetaRawContentBlockStartEvent {
767
806
  */
768
807
  content_block:
769
808
  | BetaTextBlock
809
+ | BetaThinkingBlock
810
+ | BetaRedactedThinkingBlock
770
811
  | BetaToolUseBlock
771
812
  | BetaServerToolUseBlock
772
813
  | BetaWebSearchToolResultBlock
773
814
  | BetaCodeExecutionToolResultBlock
774
815
  | BetaMCPToolUseBlock
775
816
  | BetaMCPToolResultBlock
776
- | BetaContainerUploadBlock
777
- | BetaThinkingBlock
778
- | BetaRedactedThinkingBlock;
817
+ | BetaContainerUploadBlock;
779
818
 
780
819
  index: number;
781
820
 
@@ -912,6 +951,23 @@ export interface BetaRequestMCPToolResultBlockParam {
912
951
  is_error?: boolean;
913
952
  }
914
953
 
954
+ export interface BetaSearchResultBlockParam {
955
+ content: Array<BetaTextBlockParam>;
956
+
957
+ source: string;
958
+
959
+ title: string;
960
+
961
+ type: 'search_result';
962
+
963
+ /**
964
+ * Create a cache control breakpoint at this content block.
965
+ */
966
+ cache_control?: BetaCacheControlEphemeral | null;
967
+
968
+ citations?: BetaCitationsConfigParam;
969
+ }
970
+
915
971
  export interface BetaServerToolUsage {
916
972
  /**
917
973
  * The number of web search tool requests.
@@ -990,13 +1046,15 @@ export type BetaTextCitation =
990
1046
  | BetaCitationCharLocation
991
1047
  | BetaCitationPageLocation
992
1048
  | BetaCitationContentBlockLocation
993
- | BetaCitationsWebSearchResultLocation;
1049
+ | BetaCitationsWebSearchResultLocation
1050
+ | BetaCitationSearchResultLocation;
994
1051
 
995
1052
  export type BetaTextCitationParam =
996
1053
  | BetaCitationCharLocationParam
997
1054
  | BetaCitationPageLocationParam
998
1055
  | BetaCitationContentBlockLocationParam
999
- | BetaCitationWebSearchResultLocationParam;
1056
+ | BetaCitationWebSearchResultLocationParam
1057
+ | BetaCitationSearchResultLocationParam;
1000
1058
 
1001
1059
  export interface BetaTextDelta {
1002
1060
  text: string;
@@ -1279,7 +1337,7 @@ export interface BetaToolResultBlockParam {
1279
1337
  */
1280
1338
  cache_control?: BetaCacheControlEphemeral | null;
1281
1339
 
1282
- content?: string | Array<BetaTextBlockParam | BetaImageBlockParam>;
1340
+ content?: string | Array<BetaTextBlockParam | BetaImageBlockParam | BetaSearchResultBlockParam>;
1283
1341
 
1284
1342
  is_error?: boolean;
1285
1343
  }
@@ -1334,15 +1392,15 @@ export interface BetaToolTextEditor20250429 {
1334
1392
 
1335
1393
  export type BetaToolUnion =
1336
1394
  | BetaTool
1337
- | BetaToolComputerUse20241022
1338
1395
  | BetaToolBash20241022
1339
- | BetaToolTextEditor20241022
1340
- | BetaToolComputerUse20250124
1341
1396
  | BetaToolBash20250124
1397
+ | BetaCodeExecutionTool20250522
1398
+ | BetaToolComputerUse20241022
1399
+ | BetaToolComputerUse20250124
1400
+ | BetaToolTextEditor20241022
1342
1401
  | BetaToolTextEditor20250124
1343
1402
  | BetaToolTextEditor20250429
1344
- | BetaWebSearchTool20250305
1345
- | BetaCodeExecutionTool20250522;
1403
+ | BetaWebSearchTool20250305;
1346
1404
 
1347
1405
  export interface BetaToolUseBlock {
1348
1406
  id: string;
@@ -1668,7 +1726,7 @@ export interface MessageCreateParamsBase {
1668
1726
  * the top-level `system` parameter — there is no `"system"` role for input
1669
1727
  * messages in the Messages API.
1670
1728
  *
1671
- * There is a limit of 100000 messages in a single request.
1729
+ * There is a limit of 100,000 messages in a single request.
1672
1730
  */
1673
1731
  messages: Array<BetaMessageParam>;
1674
1732
 
@@ -1773,6 +1831,12 @@ export interface MessageCreateParamsBase {
1773
1831
  * those tools using the tool input generated by the model and then optionally
1774
1832
  * return results back to the model using `tool_result` content blocks.
1775
1833
  *
1834
+ * There are two types of tools: **client tools** and **server tools**. The
1835
+ * behavior described below applies to client tools. For
1836
+ * [server tools](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/overview#server-tools),
1837
+ * see their individual documentation as each has its own behavior (e.g., the
1838
+ * [web search tool](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/web-search-tool)).
1839
+ *
1776
1840
  * Each tool definition includes:
1777
1841
  *
1778
1842
  * - `name`: Name of the tool.
@@ -1984,7 +2048,7 @@ export interface MessageCountTokensParams {
1984
2048
  * the top-level `system` parameter — there is no `"system"` role for input
1985
2049
  * messages in the Messages API.
1986
2050
  *
1987
- * There is a limit of 100000 messages in a single request.
2051
+ * There is a limit of 100,000 messages in a single request.
1988
2052
  */
1989
2053
  messages: Array<BetaMessageParam>;
1990
2054
 
@@ -2036,6 +2100,12 @@ export interface MessageCountTokensParams {
2036
2100
  * those tools using the tool input generated by the model and then optionally
2037
2101
  * return results back to the model using `tool_result` content blocks.
2038
2102
  *
2103
+ * There are two types of tools: **client tools** and **server tools**. The
2104
+ * behavior described below applies to client tools. For
2105
+ * [server tools](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/overview#server-tools),
2106
+ * see their individual documentation as each has its own behavior (e.g., the
2107
+ * [web search tool](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/web-search-tool)).
2108
+ *
2039
2109
  * Each tool definition includes:
2040
2110
  *
2041
2111
  * - `name`: Name of the tool.
@@ -2101,15 +2171,15 @@ export interface MessageCountTokensParams {
2101
2171
  */
2102
2172
  tools?: Array<
2103
2173
  | BetaTool
2104
- | BetaToolComputerUse20241022
2105
2174
  | BetaToolBash20241022
2106
- | BetaToolTextEditor20241022
2107
- | BetaToolComputerUse20250124
2108
2175
  | BetaToolBash20250124
2176
+ | BetaCodeExecutionTool20250522
2177
+ | BetaToolComputerUse20241022
2178
+ | BetaToolComputerUse20250124
2179
+ | BetaToolTextEditor20241022
2109
2180
  | BetaToolTextEditor20250124
2110
2181
  | BetaToolTextEditor20250429
2111
2182
  | BetaWebSearchTool20250305
2112
- | BetaCodeExecutionTool20250522
2113
2183
  >;
2114
2184
 
2115
2185
  /**
@@ -2132,6 +2202,8 @@ export declare namespace Messages {
2132
2202
  type BetaCitationContentBlockLocationParam as BetaCitationContentBlockLocationParam,
2133
2203
  type BetaCitationPageLocation as BetaCitationPageLocation,
2134
2204
  type BetaCitationPageLocationParam as BetaCitationPageLocationParam,
2205
+ type BetaCitationSearchResultLocation as BetaCitationSearchResultLocation,
2206
+ type BetaCitationSearchResultLocationParam as BetaCitationSearchResultLocationParam,
2135
2207
  type BetaCitationWebSearchResultLocationParam as BetaCitationWebSearchResultLocationParam,
2136
2208
  type BetaCitationsConfigParam as BetaCitationsConfigParam,
2137
2209
  type BetaCitationsDelta as BetaCitationsDelta,
@@ -2182,6 +2254,7 @@ export declare namespace Messages {
2182
2254
  type BetaRequestMCPServerToolConfiguration as BetaRequestMCPServerToolConfiguration,
2183
2255
  type BetaRequestMCPServerURLDefinition as BetaRequestMCPServerURLDefinition,
2184
2256
  type BetaRequestMCPToolResultBlockParam as BetaRequestMCPToolResultBlockParam,
2257
+ type BetaSearchResultBlockParam as BetaSearchResultBlockParam,
2185
2258
  type BetaServerToolUsage as BetaServerToolUsage,
2186
2259
  type BetaServerToolUseBlock as BetaServerToolUseBlock,
2187
2260
  type BetaServerToolUseBlockParam as BetaServerToolUseBlockParam,
@@ -33,7 +33,7 @@ export class Batches extends APIResource {
33
33
  * messages: [
34
34
  * { content: 'Hello, world', role: 'user' },
35
35
  * ],
36
- * model: 'claude-3-7-sonnet-20250219',
36
+ * model: 'claude-sonnet-4-20250514',
37
37
  * },
38
38
  * },
39
39
  * ],
@@ -42,7 +42,7 @@ export class Messages extends APIResource {
42
42
  * const message = await client.messages.create({
43
43
  * max_tokens: 1024,
44
44
  * messages: [{ content: 'Hello, world', role: 'user' }],
45
- * model: 'claude-3-7-sonnet-20250219',
45
+ * model: 'claude-sonnet-4-20250514',
46
46
  * });
47
47
  * ```
48
48
  */
@@ -253,25 +253,25 @@ export interface CitationsWebSearchResultLocation {
253
253
 
254
254
  export type ContentBlock =
255
255
  | TextBlock
256
+ | ThinkingBlock
257
+ | RedactedThinkingBlock
256
258
  | ToolUseBlock
257
259
  | ServerToolUseBlock
258
- | WebSearchToolResultBlock
259
- | ThinkingBlock
260
- | RedactedThinkingBlock;
260
+ | WebSearchToolResultBlock;
261
261
 
262
262
  /**
263
263
  * Regular text content.
264
264
  */
265
265
  export type ContentBlockParam =
266
- | ServerToolUseBlockParam
267
- | WebSearchToolResultBlockParam
268
266
  | TextBlockParam
269
267
  | ImageBlockParam
270
- | ToolUseBlockParam
271
- | ToolResultBlockParam
272
268
  | DocumentBlockParam
273
269
  | ThinkingBlockParam
274
- | RedactedThinkingBlockParam;
270
+ | RedactedThinkingBlockParam
271
+ | ToolUseBlockParam
272
+ | ToolResultBlockParam
273
+ | ServerToolUseBlockParam
274
+ | WebSearchToolResultBlockParam;
275
275
 
276
276
  export interface ContentBlockSource {
277
277
  content: string | Array<ContentBlockSourceContent>;
@@ -382,6 +382,10 @@ export interface Message {
382
382
  * - `"max_tokens"`: we exceeded the requested `max_tokens` or the model's maximum
383
383
  * - `"stop_sequence"`: one of your provided custom `stop_sequences` was generated
384
384
  * - `"tool_use"`: the model invoked one or more tools
385
+ * - `"pause_turn"`: we paused a long-running turn. You may provide the response
386
+ * back as-is in a subsequent request to let the model continue.
387
+ * - `"refusal"`: when streaming classifiers intervene to handle potential policy
388
+ * violations
385
389
  *
386
390
  * In non-streaming mode this value is always non-null. In streaming mode, it is
387
391
  * null in the `message_start` event and non-null otherwise.
@@ -536,6 +540,7 @@ const DEPRECATED_MODELS: {
536
540
  'claude-instant-1.1-100k': 'November 6th, 2024',
537
541
  'claude-instant-1.2': 'November 6th, 2024',
538
542
  'claude-3-sonnet-20240229': 'July 21st, 2025',
543
+ 'claude-3-opus-20240229': 'January 5th, 2026',
539
544
  'claude-2.1': 'July 21st, 2025',
540
545
  'claude-2.0': 'July 21st, 2025',
541
546
  };
@@ -566,11 +571,11 @@ export interface RawContentBlockDeltaEvent {
566
571
  export interface RawContentBlockStartEvent {
567
572
  content_block:
568
573
  | TextBlock
574
+ | ThinkingBlock
575
+ | RedactedThinkingBlock
569
576
  | ToolUseBlock
570
577
  | ServerToolUseBlock
571
- | WebSearchToolResultBlock
572
- | ThinkingBlock
573
- | RedactedThinkingBlock;
578
+ | WebSearchToolResultBlock;
574
579
 
575
580
  index: number;
576
581
 
@@ -1304,7 +1309,7 @@ export interface MessageCreateParamsBase {
1304
1309
  * the top-level `system` parameter — there is no `"system"` role for input
1305
1310
  * messages in the Messages API.
1306
1311
  *
1307
- * There is a limit of 100000 messages in a single request.
1312
+ * There is a limit of 100,000 messages in a single request.
1308
1313
  */
1309
1314
  messages: Array<MessageParam>;
1310
1315
 
@@ -1398,6 +1403,12 @@ export interface MessageCreateParamsBase {
1398
1403
  * those tools using the tool input generated by the model and then optionally
1399
1404
  * return results back to the model using `tool_result` content blocks.
1400
1405
  *
1406
+ * There are two types of tools: **client tools** and **server tools**. The
1407
+ * behavior described below applies to client tools. For
1408
+ * [server tools](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/overview#server-tools),
1409
+ * see their individual documentation as each has its own behavior (e.g., the
1410
+ * [web search tool](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/web-search-tool)).
1411
+ *
1401
1412
  * Each tool definition includes:
1402
1413
  *
1403
1414
  * - `name`: Name of the tool.
@@ -1604,7 +1615,7 @@ export interface MessageCountTokensParams {
1604
1615
  * the top-level `system` parameter — there is no `"system"` role for input
1605
1616
  * messages in the Messages API.
1606
1617
  *
1607
- * There is a limit of 100000 messages in a single request.
1618
+ * There is a limit of 100,000 messages in a single request.
1608
1619
  */
1609
1620
  messages: Array<MessageParam>;
1610
1621
 
@@ -1651,6 +1662,12 @@ export interface MessageCountTokensParams {
1651
1662
  * those tools using the tool input generated by the model and then optionally
1652
1663
  * return results back to the model using `tool_result` content blocks.
1653
1664
  *
1665
+ * There are two types of tools: **client tools** and **server tools**. The
1666
+ * behavior described below applies to client tools. For
1667
+ * [server tools](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/overview#server-tools),
1668
+ * see their individual documentation as each has its own behavior (e.g., the
1669
+ * [web search tool](https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/web-search-tool)).
1670
+ *
1654
1671
  * Each tool definition includes:
1655
1672
  *
1656
1673
  * - `name`: Name of the tool.
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.55.1'; // x-release-please-version
1
+ export const VERSION = '0.56.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.55.1";
1
+ export declare const VERSION = "0.56.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.55.1";
1
+ export declare const VERSION = "0.56.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.55.1'; // x-release-please-version
4
+ exports.VERSION = '0.56.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.55.1'; // x-release-please-version
1
+ export const VERSION = '0.56.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map