@langchain/anthropic 1.2.3 → 1.3.0-dev-1765432861398

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 (112) hide show
  1. package/README.md +620 -3
  2. package/dist/chat_models.cjs +8 -5
  3. package/dist/chat_models.cjs.map +1 -1
  4. package/dist/chat_models.d.cts +13 -16
  5. package/dist/chat_models.d.cts.map +1 -0
  6. package/dist/chat_models.d.ts +13 -16
  7. package/dist/chat_models.d.ts.map +1 -0
  8. package/dist/chat_models.js +7 -4
  9. package/dist/chat_models.js.map +1 -1
  10. package/dist/index.cjs +3 -1
  11. package/dist/index.d.cts +12 -2
  12. package/dist/index.d.ts +12 -2
  13. package/dist/index.js +2 -1
  14. package/dist/tools/bash.cjs +95 -0
  15. package/dist/tools/bash.cjs.map +1 -0
  16. package/dist/tools/bash.d.cts +99 -0
  17. package/dist/tools/bash.d.cts.map +1 -0
  18. package/dist/tools/bash.d.ts +99 -0
  19. package/dist/tools/bash.d.ts.map +1 -0
  20. package/dist/tools/bash.js +94 -0
  21. package/dist/tools/bash.js.map +1 -0
  22. package/dist/tools/codeExecution.cjs +70 -0
  23. package/dist/tools/codeExecution.cjs.map +1 -0
  24. package/dist/tools/codeExecution.d.cts +75 -0
  25. package/dist/tools/codeExecution.d.cts.map +1 -0
  26. package/dist/tools/codeExecution.d.ts +75 -0
  27. package/dist/tools/codeExecution.d.ts.map +1 -0
  28. package/dist/tools/codeExecution.js +69 -0
  29. package/dist/tools/codeExecution.js.map +1 -0
  30. package/dist/tools/computer.cjs +161 -0
  31. package/dist/tools/computer.cjs.map +1 -0
  32. package/dist/tools/computer.d.cts +289 -0
  33. package/dist/tools/computer.d.cts.map +1 -0
  34. package/dist/tools/computer.d.ts +289 -0
  35. package/dist/tools/computer.d.ts.map +1 -0
  36. package/dist/tools/computer.js +159 -0
  37. package/dist/tools/computer.js.map +1 -0
  38. package/dist/tools/index.cjs +28 -0
  39. package/dist/tools/index.cjs.map +1 -0
  40. package/dist/tools/index.d.cts +28 -0
  41. package/dist/tools/index.d.cts.map +1 -0
  42. package/dist/tools/index.d.ts +28 -0
  43. package/dist/tools/index.d.ts.map +1 -0
  44. package/dist/tools/index.js +28 -0
  45. package/dist/tools/index.js.map +1 -0
  46. package/dist/tools/mcpToolset.cjs +111 -0
  47. package/dist/tools/mcpToolset.cjs.map +1 -0
  48. package/dist/tools/mcpToolset.d.cts +141 -0
  49. package/dist/tools/mcpToolset.d.cts.map +1 -0
  50. package/dist/tools/mcpToolset.d.ts +141 -0
  51. package/dist/tools/mcpToolset.d.ts.map +1 -0
  52. package/dist/tools/mcpToolset.js +110 -0
  53. package/dist/tools/mcpToolset.js.map +1 -0
  54. package/dist/tools/memory.cjs +56 -0
  55. package/dist/tools/memory.cjs.map +1 -0
  56. package/dist/tools/memory.d.cts +92 -0
  57. package/dist/tools/memory.d.cts.map +1 -0
  58. package/dist/tools/memory.d.ts +92 -0
  59. package/dist/tools/memory.d.ts.map +1 -0
  60. package/dist/tools/memory.js +55 -0
  61. package/dist/tools/memory.js.map +1 -0
  62. package/dist/tools/textEditor.cjs +79 -0
  63. package/dist/tools/textEditor.cjs.map +1 -0
  64. package/dist/tools/textEditor.d.cts +114 -0
  65. package/dist/tools/textEditor.d.cts.map +1 -0
  66. package/dist/tools/textEditor.d.ts +114 -0
  67. package/dist/tools/textEditor.d.ts.map +1 -0
  68. package/dist/tools/textEditor.js +78 -0
  69. package/dist/tools/textEditor.js.map +1 -0
  70. package/dist/tools/toolSearch.cjs +110 -0
  71. package/dist/tools/toolSearch.cjs.map +1 -0
  72. package/dist/tools/toolSearch.d.cts +108 -0
  73. package/dist/tools/toolSearch.d.cts.map +1 -0
  74. package/dist/tools/toolSearch.d.ts +108 -0
  75. package/dist/tools/toolSearch.d.ts.map +1 -0
  76. package/dist/tools/toolSearch.js +108 -0
  77. package/dist/tools/toolSearch.js.map +1 -0
  78. package/dist/tools/types.cjs +204 -0
  79. package/dist/tools/types.cjs.map +1 -0
  80. package/dist/tools/types.d.cts +366 -0
  81. package/dist/tools/types.d.cts.map +1 -0
  82. package/dist/tools/types.d.ts +366 -0
  83. package/dist/tools/types.d.ts.map +1 -0
  84. package/dist/tools/types.js +199 -0
  85. package/dist/tools/types.js.map +1 -0
  86. package/dist/tools/webFetch.cjs +70 -0
  87. package/dist/tools/webFetch.cjs.map +1 -0
  88. package/dist/tools/webFetch.d.cts +96 -0
  89. package/dist/tools/webFetch.d.cts.map +1 -0
  90. package/dist/tools/webFetch.d.ts +96 -0
  91. package/dist/tools/webFetch.d.ts.map +1 -0
  92. package/dist/tools/webFetch.js +69 -0
  93. package/dist/tools/webFetch.js.map +1 -0
  94. package/dist/tools/webSearch.cjs +57 -0
  95. package/dist/tools/webSearch.cjs.map +1 -0
  96. package/dist/tools/webSearch.d.cts +84 -0
  97. package/dist/tools/webSearch.d.cts.map +1 -0
  98. package/dist/tools/webSearch.d.ts +84 -0
  99. package/dist/tools/webSearch.d.ts.map +1 -0
  100. package/dist/tools/webSearch.js +56 -0
  101. package/dist/tools/webSearch.js.map +1 -0
  102. package/dist/types.d.cts +2 -3
  103. package/dist/types.d.cts.map +1 -0
  104. package/dist/types.d.ts +2 -3
  105. package/dist/types.d.ts.map +1 -0
  106. package/dist/utils/prompts.d.cts.map +1 -0
  107. package/dist/utils/prompts.d.ts.map +1 -0
  108. package/dist/utils/tools.cjs +9 -2
  109. package/dist/utils/tools.cjs.map +1 -1
  110. package/dist/utils/tools.js +13 -6
  111. package/dist/utils/tools.js.map +1 -1
  112. package/package.json +8 -7
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.cts","names":["Anthropic","z","Memory20250818ViewCommandSchema","ZodLiteral","ZodString","core","$strip","ZodObject","Memory20250818CreateCommandSchema","Memory20250818StrReplaceCommandSchema","Memory20250818InsertCommandSchema","ZodNumber","Memory20250818DeleteCommandSchema","Memory20250818RenameCommandSchema","Memory20250818CommandSchema","ZodDiscriminatedUnion","Memory20250818ViewCommand","infer","Memory20250818CreateCommand","Memory20250818StrReplaceCommand","Memory20250818InsertCommand","Memory20250818DeleteCommand","Memory20250818RenameCommand","Memory20250818Command","MemoryTool20250818Options","Promise","MemoryTool20250818","Beta","BetaMemoryTool20250818","TextEditor20250728ViewCommandSchema","ZodTuple","ZodOptional","TextEditor20250728StrReplaceCommandSchema","TextEditor20250728CreateCommandSchema","TextEditor20250728InsertCommandSchema","TextEditor20250728CommandSchema","TextEditor20250728ViewCommand","TextEditor20250728StrReplaceCommand","TextEditor20250728CreateCommand","TextEditor20250728InsertCommand","TextEditor20250728Command","Computer20251124Action","Computer20250124Action","ComputerZoomAction","ComputerScreenshotAction","ComputerLeftClickAction","ComputerRightClickAction","ComputerMiddleClickAction","ComputerDoubleClickAction","ComputerTripleClickAction","ComputerLeftClickDragAction","ComputerLeftMouseDownAction","ComputerLeftMouseUpAction","ComputerScrollAction","ComputerTypeAction","ComputerKeyAction","ComputerMouseMoveAction","ComputerHoldKeyAction","ComputerWaitAction","ComputerScreenshotActionSchema","ComputerLeftClickActionSchema","ComputerRightClickActionSchema","ComputerMiddleClickActionSchema","ComputerDoubleClickActionSchema","ComputerTripleClickActionSchema","ComputerLeftClickDragActionSchema","ComputerLeftMouseDownActionSchema","ComputerLeftMouseUpActionSchema","ComputerScrollActionSchema","ZodEnum","ComputerTypeActionSchema","ComputerKeyActionSchema","ComputerMouseMoveActionSchema","ComputerHoldKeyActionSchema","ComputerWaitActionSchema","ComputerZoomActionSchema","Computer20250124ActionSchema","Computer20251124ActionSchema","Bash20250124ExecuteCommandSchema","Bash20250124RestartCommandSchema","Bash20250124CommandSchema","ZodUnion","Bash20250124ExecuteCommand","Bash20250124RestartCommand","Bash20250124Command"],"sources":["../../src/tools/types.d.ts"],"sourcesContent":["import Anthropic from \"@anthropic-ai/sdk\";\nimport { z } from \"zod/v4\";\n/**\n * Memory tool command types as defined by Anthropic's memory tool API.\n * @beta\n * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/memory-tool\n */\nexport declare const Memory20250818ViewCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818CreateCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818StrReplaceCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818InsertCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n insert_text: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818DeleteCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"delete\">;\n path: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818RenameCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"rename\">;\n old_path: z.ZodString;\n new_path: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818CommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n insert_text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"delete\">;\n path: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"rename\">;\n old_path: z.ZodString;\n new_path: z.ZodString;\n}, z.core.$strip>], \"command\">;\nexport type Memory20250818ViewCommand = z.infer<typeof Memory20250818ViewCommandSchema>;\nexport type Memory20250818CreateCommand = z.infer<typeof Memory20250818CreateCommandSchema>;\nexport type Memory20250818StrReplaceCommand = z.infer<typeof Memory20250818StrReplaceCommandSchema>;\nexport type Memory20250818InsertCommand = z.infer<typeof Memory20250818InsertCommandSchema>;\nexport type Memory20250818DeleteCommand = z.infer<typeof Memory20250818DeleteCommandSchema>;\nexport type Memory20250818RenameCommand = z.infer<typeof Memory20250818RenameCommandSchema>;\nexport type Memory20250818Command = z.infer<typeof Memory20250818CommandSchema>;\n/**\n * Options for creating a memory tool.\n */\nexport interface MemoryTool20250818Options {\n /**\n * Optional execute function that handles memory command execution.\n * In LangChain, this is typically handled separately when processing tool calls,\n * but this option is provided for compatibility with the AI SDK pattern.\n * Note: This option is currently unused but reserved for future use.\n */\n execute: (action: Memory20250818Command) => Promise<string> | string;\n}\n/**\n * Memory tool type definition.\n */\nexport type MemoryTool20250818 = Anthropic.Beta.BetaMemoryTool20250818;\n/**\n * Text editor tool command types for Claude 4.x models.\n * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/text-editor-tool\n */\nexport declare const TextEditor20250728ViewCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n view_range: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;\n}, z.core.$strip>;\nexport declare const TextEditor20250728StrReplaceCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>;\nexport declare const TextEditor20250728CreateCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>;\nexport declare const TextEditor20250728InsertCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n new_str: z.ZodString;\n}, z.core.$strip>;\nexport declare const TextEditor20250728CommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n view_range: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n new_str: z.ZodString;\n}, z.core.$strip>], \"command\">;\nexport type TextEditor20250728ViewCommand = z.infer<typeof TextEditor20250728ViewCommandSchema>;\nexport type TextEditor20250728StrReplaceCommand = z.infer<typeof TextEditor20250728StrReplaceCommandSchema>;\nexport type TextEditor20250728CreateCommand = z.infer<typeof TextEditor20250728CreateCommandSchema>;\nexport type TextEditor20250728InsertCommand = z.infer<typeof TextEditor20250728InsertCommandSchema>;\nexport type TextEditor20250728Command = z.infer<typeof TextEditor20250728CommandSchema>;\n/**\n * Computer use tool action types for Claude Opus 4.5.\n * Includes zoom action which is not available in earlier versions.\n * @see https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool\n */\nexport type Computer20251124Action = Computer20250124Action | ComputerZoomAction;\n/**\n * Computer use tool action types for Claude Sonnet 4.5, Haiku 4.5, Opus 4.1, Sonnet 4, Opus 4, and Sonnet 3.7 versions.\n * @see https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool\n */\nexport type Computer20250124Action = ComputerScreenshotAction | ComputerLeftClickAction | ComputerRightClickAction | ComputerMiddleClickAction | ComputerDoubleClickAction | ComputerTripleClickAction | ComputerLeftClickDragAction | ComputerLeftMouseDownAction | ComputerLeftMouseUpAction | ComputerScrollAction | ComputerTypeAction | ComputerKeyAction | ComputerMouseMoveAction | ComputerHoldKeyAction | ComputerWaitAction;\nexport declare const ComputerScreenshotActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"screenshot\">;\n}, z.core.$strip>;\nexport declare const ComputerLeftClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerRightClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"right_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerMiddleClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"middle_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerDoubleClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"double_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerTripleClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"triple_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerLeftClickDragActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_click_drag\">;\n start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerLeftMouseDownActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_down\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerLeftMouseUpActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_up\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerScrollActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"scroll\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n scroll_direction: z.ZodEnum<{\n down: \"down\";\n left: \"left\";\n right: \"right\";\n up: \"up\";\n }>;\n scroll_amount: z.ZodNumber;\n}, z.core.$strip>;\nexport declare const ComputerTypeActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"type\">;\n text: z.ZodString;\n}, z.core.$strip>;\nexport declare const ComputerKeyActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"key\">;\n key: z.ZodString;\n}, z.core.$strip>;\nexport declare const ComputerMouseMoveActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"mouse_move\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerHoldKeyActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"hold_key\">;\n key: z.ZodString;\n}, z.core.$strip>;\nexport declare const ComputerWaitActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"wait\">;\n duration: z.ZodOptional<z.ZodNumber>;\n}, z.core.$strip>;\nexport declare const ComputerZoomActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"zoom\">;\n region: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const Computer20250124ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n action: z.ZodLiteral<\"screenshot\">;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"right_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"middle_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"double_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"triple_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click_drag\">;\n start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_down\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_up\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"scroll\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n scroll_direction: z.ZodEnum<{\n down: \"down\";\n left: \"left\";\n right: \"right\";\n up: \"up\";\n }>;\n scroll_amount: z.ZodNumber;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"type\">;\n text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"mouse_move\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"hold_key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"wait\">;\n duration: z.ZodOptional<z.ZodNumber>;\n}, z.core.$strip>], \"action\">;\nexport declare const Computer20251124ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n action: z.ZodLiteral<\"screenshot\">;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"right_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"middle_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"double_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"triple_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click_drag\">;\n start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_down\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_up\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"scroll\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n scroll_direction: z.ZodEnum<{\n down: \"down\";\n left: \"left\";\n right: \"right\";\n up: \"up\";\n }>;\n scroll_amount: z.ZodNumber;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"type\">;\n text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"mouse_move\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"hold_key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"wait\">;\n duration: z.ZodOptional<z.ZodNumber>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"zoom\">;\n region: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>], \"action\">;\nexport type ComputerScreenshotAction = z.infer<typeof ComputerScreenshotActionSchema>;\nexport type ComputerLeftClickAction = z.infer<typeof ComputerLeftClickActionSchema>;\nexport type ComputerRightClickAction = z.infer<typeof ComputerRightClickActionSchema>;\nexport type ComputerMiddleClickAction = z.infer<typeof ComputerMiddleClickActionSchema>;\nexport type ComputerDoubleClickAction = z.infer<typeof ComputerDoubleClickActionSchema>;\nexport type ComputerTripleClickAction = z.infer<typeof ComputerTripleClickActionSchema>;\nexport type ComputerLeftClickDragAction = z.infer<typeof ComputerLeftClickDragActionSchema>;\nexport type ComputerLeftMouseDownAction = z.infer<typeof ComputerLeftMouseDownActionSchema>;\nexport type ComputerLeftMouseUpAction = z.infer<typeof ComputerLeftMouseUpActionSchema>;\nexport type ComputerScrollAction = z.infer<typeof ComputerScrollActionSchema>;\nexport type ComputerTypeAction = z.infer<typeof ComputerTypeActionSchema>;\nexport type ComputerKeyAction = z.infer<typeof ComputerKeyActionSchema>;\nexport type ComputerMouseMoveAction = z.infer<typeof ComputerMouseMoveActionSchema>;\nexport type ComputerHoldKeyAction = z.infer<typeof ComputerHoldKeyActionSchema>;\nexport type ComputerWaitAction = z.infer<typeof ComputerWaitActionSchema>;\nexport type ComputerZoomAction = z.infer<typeof ComputerZoomActionSchema>;\n/**\n * Bash tool command types for Claude 4 models and Claude 3.7.\n * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/bash-tool\n */\nexport declare const Bash20250124ExecuteCommandSchema: z.ZodObject<{\n command: z.ZodString;\n}, z.core.$strip>;\nexport declare const Bash20250124RestartCommandSchema: z.ZodObject<{\n restart: z.ZodLiteral<true>;\n}, z.core.$strip>;\nexport declare const Bash20250124CommandSchema: z.ZodUnion<readonly [z.ZodObject<{\n command: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n restart: z.ZodLiteral<true>;\n}, z.core.$strip>]>;\nexport type Bash20250124ExecuteCommand = z.infer<typeof Bash20250124ExecuteCommandSchema>;\nexport type Bash20250124RestartCommand = z.infer<typeof Bash20250124RestartCommandSchema>;\nexport type Bash20250124Command = z.infer<typeof Bash20250124CommandSchema>;\n//# sourceMappingURL=types.d.ts.map"],"mappings":"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"}
@@ -0,0 +1,366 @@
1
+ import Anthropic from "@anthropic-ai/sdk";
2
+ import { z } from "zod/v4";
3
+
4
+ //#region src/tools/types.d.ts
5
+
6
+ /**
7
+ * Memory tool command types as defined by Anthropic's memory tool API.
8
+ * @beta
9
+ * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/memory-tool
10
+ */
11
+ declare const Memory20250818ViewCommandSchema: z.ZodObject<{
12
+ command: z.ZodLiteral<"view">;
13
+ path: z.ZodString;
14
+ }, z.core.$strip>;
15
+ declare const Memory20250818CreateCommandSchema: z.ZodObject<{
16
+ command: z.ZodLiteral<"create">;
17
+ path: z.ZodString;
18
+ file_text: z.ZodString;
19
+ }, z.core.$strip>;
20
+ declare const Memory20250818StrReplaceCommandSchema: z.ZodObject<{
21
+ command: z.ZodLiteral<"str_replace">;
22
+ path: z.ZodString;
23
+ old_str: z.ZodString;
24
+ new_str: z.ZodString;
25
+ }, z.core.$strip>;
26
+ declare const Memory20250818InsertCommandSchema: z.ZodObject<{
27
+ command: z.ZodLiteral<"insert">;
28
+ path: z.ZodString;
29
+ insert_line: z.ZodNumber;
30
+ insert_text: z.ZodString;
31
+ }, z.core.$strip>;
32
+ declare const Memory20250818DeleteCommandSchema: z.ZodObject<{
33
+ command: z.ZodLiteral<"delete">;
34
+ path: z.ZodString;
35
+ }, z.core.$strip>;
36
+ declare const Memory20250818RenameCommandSchema: z.ZodObject<{
37
+ command: z.ZodLiteral<"rename">;
38
+ old_path: z.ZodString;
39
+ new_path: z.ZodString;
40
+ }, z.core.$strip>;
41
+ declare const Memory20250818CommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
42
+ command: z.ZodLiteral<"view">;
43
+ path: z.ZodString;
44
+ }, z.core.$strip>, z.ZodObject<{
45
+ command: z.ZodLiteral<"create">;
46
+ path: z.ZodString;
47
+ file_text: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ command: z.ZodLiteral<"str_replace">;
50
+ path: z.ZodString;
51
+ old_str: z.ZodString;
52
+ new_str: z.ZodString;
53
+ }, z.core.$strip>, z.ZodObject<{
54
+ command: z.ZodLiteral<"insert">;
55
+ path: z.ZodString;
56
+ insert_line: z.ZodNumber;
57
+ insert_text: z.ZodString;
58
+ }, z.core.$strip>, z.ZodObject<{
59
+ command: z.ZodLiteral<"delete">;
60
+ path: z.ZodString;
61
+ }, z.core.$strip>, z.ZodObject<{
62
+ command: z.ZodLiteral<"rename">;
63
+ old_path: z.ZodString;
64
+ new_path: z.ZodString;
65
+ }, z.core.$strip>], "command">;
66
+ type Memory20250818ViewCommand = z.infer<typeof Memory20250818ViewCommandSchema>;
67
+ type Memory20250818CreateCommand = z.infer<typeof Memory20250818CreateCommandSchema>;
68
+ type Memory20250818StrReplaceCommand = z.infer<typeof Memory20250818StrReplaceCommandSchema>;
69
+ type Memory20250818InsertCommand = z.infer<typeof Memory20250818InsertCommandSchema>;
70
+ type Memory20250818DeleteCommand = z.infer<typeof Memory20250818DeleteCommandSchema>;
71
+ type Memory20250818RenameCommand = z.infer<typeof Memory20250818RenameCommandSchema>;
72
+ type Memory20250818Command = z.infer<typeof Memory20250818CommandSchema>;
73
+ /**
74
+ * Options for creating a memory tool.
75
+ */
76
+ interface MemoryTool20250818Options {
77
+ /**
78
+ * Optional execute function that handles memory command execution.
79
+ * In LangChain, this is typically handled separately when processing tool calls,
80
+ * but this option is provided for compatibility with the AI SDK pattern.
81
+ * Note: This option is currently unused but reserved for future use.
82
+ */
83
+ execute: (action: Memory20250818Command) => Promise<string> | string;
84
+ }
85
+ /**
86
+ * Memory tool type definition.
87
+ */
88
+ type MemoryTool20250818 = Anthropic.Beta.BetaMemoryTool20250818;
89
+ /**
90
+ * Text editor tool command types for Claude 4.x models.
91
+ * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/text-editor-tool
92
+ */
93
+ declare const TextEditor20250728ViewCommandSchema: z.ZodObject<{
94
+ command: z.ZodLiteral<"view">;
95
+ path: z.ZodString;
96
+ view_range: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
97
+ }, z.core.$strip>;
98
+ declare const TextEditor20250728StrReplaceCommandSchema: z.ZodObject<{
99
+ command: z.ZodLiteral<"str_replace">;
100
+ path: z.ZodString;
101
+ old_str: z.ZodString;
102
+ new_str: z.ZodString;
103
+ }, z.core.$strip>;
104
+ declare const TextEditor20250728CreateCommandSchema: z.ZodObject<{
105
+ command: z.ZodLiteral<"create">;
106
+ path: z.ZodString;
107
+ file_text: z.ZodString;
108
+ }, z.core.$strip>;
109
+ declare const TextEditor20250728InsertCommandSchema: z.ZodObject<{
110
+ command: z.ZodLiteral<"insert">;
111
+ path: z.ZodString;
112
+ insert_line: z.ZodNumber;
113
+ new_str: z.ZodString;
114
+ }, z.core.$strip>;
115
+ declare const TextEditor20250728CommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
116
+ command: z.ZodLiteral<"view">;
117
+ path: z.ZodString;
118
+ view_range: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
119
+ }, z.core.$strip>, z.ZodObject<{
120
+ command: z.ZodLiteral<"str_replace">;
121
+ path: z.ZodString;
122
+ old_str: z.ZodString;
123
+ new_str: z.ZodString;
124
+ }, z.core.$strip>, z.ZodObject<{
125
+ command: z.ZodLiteral<"create">;
126
+ path: z.ZodString;
127
+ file_text: z.ZodString;
128
+ }, z.core.$strip>, z.ZodObject<{
129
+ command: z.ZodLiteral<"insert">;
130
+ path: z.ZodString;
131
+ insert_line: z.ZodNumber;
132
+ new_str: z.ZodString;
133
+ }, z.core.$strip>], "command">;
134
+ type TextEditor20250728ViewCommand = z.infer<typeof TextEditor20250728ViewCommandSchema>;
135
+ type TextEditor20250728StrReplaceCommand = z.infer<typeof TextEditor20250728StrReplaceCommandSchema>;
136
+ type TextEditor20250728CreateCommand = z.infer<typeof TextEditor20250728CreateCommandSchema>;
137
+ type TextEditor20250728InsertCommand = z.infer<typeof TextEditor20250728InsertCommandSchema>;
138
+ type TextEditor20250728Command = z.infer<typeof TextEditor20250728CommandSchema>;
139
+ /**
140
+ * Computer use tool action types for Claude Opus 4.5.
141
+ * Includes zoom action which is not available in earlier versions.
142
+ * @see https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool
143
+ */
144
+ type Computer20251124Action = Computer20250124Action | ComputerZoomAction;
145
+ /**
146
+ * Computer use tool action types for Claude Sonnet 4.5, Haiku 4.5, Opus 4.1, Sonnet 4, Opus 4, and Sonnet 3.7 versions.
147
+ * @see https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool
148
+ */
149
+ type Computer20250124Action = ComputerScreenshotAction | ComputerLeftClickAction | ComputerRightClickAction | ComputerMiddleClickAction | ComputerDoubleClickAction | ComputerTripleClickAction | ComputerLeftClickDragAction | ComputerLeftMouseDownAction | ComputerLeftMouseUpAction | ComputerScrollAction | ComputerTypeAction | ComputerKeyAction | ComputerMouseMoveAction | ComputerHoldKeyAction | ComputerWaitAction;
150
+ declare const ComputerScreenshotActionSchema: z.ZodObject<{
151
+ action: z.ZodLiteral<"screenshot">;
152
+ }, z.core.$strip>;
153
+ declare const ComputerLeftClickActionSchema: z.ZodObject<{
154
+ action: z.ZodLiteral<"left_click">;
155
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
156
+ }, z.core.$strip>;
157
+ declare const ComputerRightClickActionSchema: z.ZodObject<{
158
+ action: z.ZodLiteral<"right_click">;
159
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
160
+ }, z.core.$strip>;
161
+ declare const ComputerMiddleClickActionSchema: z.ZodObject<{
162
+ action: z.ZodLiteral<"middle_click">;
163
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
164
+ }, z.core.$strip>;
165
+ declare const ComputerDoubleClickActionSchema: z.ZodObject<{
166
+ action: z.ZodLiteral<"double_click">;
167
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
168
+ }, z.core.$strip>;
169
+ declare const ComputerTripleClickActionSchema: z.ZodObject<{
170
+ action: z.ZodLiteral<"triple_click">;
171
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
172
+ }, z.core.$strip>;
173
+ declare const ComputerLeftClickDragActionSchema: z.ZodObject<{
174
+ action: z.ZodLiteral<"left_click_drag">;
175
+ start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
176
+ end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
177
+ }, z.core.$strip>;
178
+ declare const ComputerLeftMouseDownActionSchema: z.ZodObject<{
179
+ action: z.ZodLiteral<"left_mouse_down">;
180
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
181
+ }, z.core.$strip>;
182
+ declare const ComputerLeftMouseUpActionSchema: z.ZodObject<{
183
+ action: z.ZodLiteral<"left_mouse_up">;
184
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
185
+ }, z.core.$strip>;
186
+ declare const ComputerScrollActionSchema: z.ZodObject<{
187
+ action: z.ZodLiteral<"scroll">;
188
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
189
+ scroll_direction: z.ZodEnum<{
190
+ down: "down";
191
+ left: "left";
192
+ right: "right";
193
+ up: "up";
194
+ }>;
195
+ scroll_amount: z.ZodNumber;
196
+ }, z.core.$strip>;
197
+ declare const ComputerTypeActionSchema: z.ZodObject<{
198
+ action: z.ZodLiteral<"type">;
199
+ text: z.ZodString;
200
+ }, z.core.$strip>;
201
+ declare const ComputerKeyActionSchema: z.ZodObject<{
202
+ action: z.ZodLiteral<"key">;
203
+ key: z.ZodString;
204
+ }, z.core.$strip>;
205
+ declare const ComputerMouseMoveActionSchema: z.ZodObject<{
206
+ action: z.ZodLiteral<"mouse_move">;
207
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
208
+ }, z.core.$strip>;
209
+ declare const ComputerHoldKeyActionSchema: z.ZodObject<{
210
+ action: z.ZodLiteral<"hold_key">;
211
+ key: z.ZodString;
212
+ }, z.core.$strip>;
213
+ declare const ComputerWaitActionSchema: z.ZodObject<{
214
+ action: z.ZodLiteral<"wait">;
215
+ duration: z.ZodOptional<z.ZodNumber>;
216
+ }, z.core.$strip>;
217
+ declare const ComputerZoomActionSchema: z.ZodObject<{
218
+ action: z.ZodLiteral<"zoom">;
219
+ region: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
220
+ }, z.core.$strip>;
221
+ declare const Computer20250124ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
222
+ action: z.ZodLiteral<"screenshot">;
223
+ }, z.core.$strip>, z.ZodObject<{
224
+ action: z.ZodLiteral<"left_click">;
225
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
226
+ }, z.core.$strip>, z.ZodObject<{
227
+ action: z.ZodLiteral<"right_click">;
228
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
229
+ }, z.core.$strip>, z.ZodObject<{
230
+ action: z.ZodLiteral<"middle_click">;
231
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
232
+ }, z.core.$strip>, z.ZodObject<{
233
+ action: z.ZodLiteral<"double_click">;
234
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
235
+ }, z.core.$strip>, z.ZodObject<{
236
+ action: z.ZodLiteral<"triple_click">;
237
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
238
+ }, z.core.$strip>, z.ZodObject<{
239
+ action: z.ZodLiteral<"left_click_drag">;
240
+ start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
241
+ end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
242
+ }, z.core.$strip>, z.ZodObject<{
243
+ action: z.ZodLiteral<"left_mouse_down">;
244
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
245
+ }, z.core.$strip>, z.ZodObject<{
246
+ action: z.ZodLiteral<"left_mouse_up">;
247
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
248
+ }, z.core.$strip>, z.ZodObject<{
249
+ action: z.ZodLiteral<"scroll">;
250
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
251
+ scroll_direction: z.ZodEnum<{
252
+ down: "down";
253
+ left: "left";
254
+ right: "right";
255
+ up: "up";
256
+ }>;
257
+ scroll_amount: z.ZodNumber;
258
+ }, z.core.$strip>, z.ZodObject<{
259
+ action: z.ZodLiteral<"type">;
260
+ text: z.ZodString;
261
+ }, z.core.$strip>, z.ZodObject<{
262
+ action: z.ZodLiteral<"key">;
263
+ key: z.ZodString;
264
+ }, z.core.$strip>, z.ZodObject<{
265
+ action: z.ZodLiteral<"mouse_move">;
266
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
267
+ }, z.core.$strip>, z.ZodObject<{
268
+ action: z.ZodLiteral<"hold_key">;
269
+ key: z.ZodString;
270
+ }, z.core.$strip>, z.ZodObject<{
271
+ action: z.ZodLiteral<"wait">;
272
+ duration: z.ZodOptional<z.ZodNumber>;
273
+ }, z.core.$strip>], "action">;
274
+ declare const Computer20251124ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
275
+ action: z.ZodLiteral<"screenshot">;
276
+ }, z.core.$strip>, z.ZodObject<{
277
+ action: z.ZodLiteral<"left_click">;
278
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
279
+ }, z.core.$strip>, z.ZodObject<{
280
+ action: z.ZodLiteral<"right_click">;
281
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
282
+ }, z.core.$strip>, z.ZodObject<{
283
+ action: z.ZodLiteral<"middle_click">;
284
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
285
+ }, z.core.$strip>, z.ZodObject<{
286
+ action: z.ZodLiteral<"double_click">;
287
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
288
+ }, z.core.$strip>, z.ZodObject<{
289
+ action: z.ZodLiteral<"triple_click">;
290
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
291
+ }, z.core.$strip>, z.ZodObject<{
292
+ action: z.ZodLiteral<"left_click_drag">;
293
+ start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
294
+ end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
295
+ }, z.core.$strip>, z.ZodObject<{
296
+ action: z.ZodLiteral<"left_mouse_down">;
297
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
298
+ }, z.core.$strip>, z.ZodObject<{
299
+ action: z.ZodLiteral<"left_mouse_up">;
300
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
301
+ }, z.core.$strip>, z.ZodObject<{
302
+ action: z.ZodLiteral<"scroll">;
303
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
304
+ scroll_direction: z.ZodEnum<{
305
+ down: "down";
306
+ left: "left";
307
+ right: "right";
308
+ up: "up";
309
+ }>;
310
+ scroll_amount: z.ZodNumber;
311
+ }, z.core.$strip>, z.ZodObject<{
312
+ action: z.ZodLiteral<"type">;
313
+ text: z.ZodString;
314
+ }, z.core.$strip>, z.ZodObject<{
315
+ action: z.ZodLiteral<"key">;
316
+ key: z.ZodString;
317
+ }, z.core.$strip>, z.ZodObject<{
318
+ action: z.ZodLiteral<"mouse_move">;
319
+ coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
320
+ }, z.core.$strip>, z.ZodObject<{
321
+ action: z.ZodLiteral<"hold_key">;
322
+ key: z.ZodString;
323
+ }, z.core.$strip>, z.ZodObject<{
324
+ action: z.ZodLiteral<"wait">;
325
+ duration: z.ZodOptional<z.ZodNumber>;
326
+ }, z.core.$strip>, z.ZodObject<{
327
+ action: z.ZodLiteral<"zoom">;
328
+ region: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;
329
+ }, z.core.$strip>], "action">;
330
+ type ComputerScreenshotAction = z.infer<typeof ComputerScreenshotActionSchema>;
331
+ type ComputerLeftClickAction = z.infer<typeof ComputerLeftClickActionSchema>;
332
+ type ComputerRightClickAction = z.infer<typeof ComputerRightClickActionSchema>;
333
+ type ComputerMiddleClickAction = z.infer<typeof ComputerMiddleClickActionSchema>;
334
+ type ComputerDoubleClickAction = z.infer<typeof ComputerDoubleClickActionSchema>;
335
+ type ComputerTripleClickAction = z.infer<typeof ComputerTripleClickActionSchema>;
336
+ type ComputerLeftClickDragAction = z.infer<typeof ComputerLeftClickDragActionSchema>;
337
+ type ComputerLeftMouseDownAction = z.infer<typeof ComputerLeftMouseDownActionSchema>;
338
+ type ComputerLeftMouseUpAction = z.infer<typeof ComputerLeftMouseUpActionSchema>;
339
+ type ComputerScrollAction = z.infer<typeof ComputerScrollActionSchema>;
340
+ type ComputerTypeAction = z.infer<typeof ComputerTypeActionSchema>;
341
+ type ComputerKeyAction = z.infer<typeof ComputerKeyActionSchema>;
342
+ type ComputerMouseMoveAction = z.infer<typeof ComputerMouseMoveActionSchema>;
343
+ type ComputerHoldKeyAction = z.infer<typeof ComputerHoldKeyActionSchema>;
344
+ type ComputerWaitAction = z.infer<typeof ComputerWaitActionSchema>;
345
+ type ComputerZoomAction = z.infer<typeof ComputerZoomActionSchema>;
346
+ /**
347
+ * Bash tool command types for Claude 4 models and Claude 3.7.
348
+ * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/bash-tool
349
+ */
350
+ declare const Bash20250124ExecuteCommandSchema: z.ZodObject<{
351
+ command: z.ZodString;
352
+ }, z.core.$strip>;
353
+ declare const Bash20250124RestartCommandSchema: z.ZodObject<{
354
+ restart: z.ZodLiteral<true>;
355
+ }, z.core.$strip>;
356
+ declare const Bash20250124CommandSchema: z.ZodUnion<readonly [z.ZodObject<{
357
+ command: z.ZodString;
358
+ }, z.core.$strip>, z.ZodObject<{
359
+ restart: z.ZodLiteral<true>;
360
+ }, z.core.$strip>]>;
361
+ type Bash20250124ExecuteCommand = z.infer<typeof Bash20250124ExecuteCommandSchema>;
362
+ type Bash20250124RestartCommand = z.infer<typeof Bash20250124RestartCommandSchema>;
363
+ type Bash20250124Command = z.infer<typeof Bash20250124CommandSchema>;
364
+ //#endregion
365
+ export { Bash20250124Command, Bash20250124CommandSchema, Bash20250124ExecuteCommand, Bash20250124ExecuteCommandSchema, Bash20250124RestartCommand, Bash20250124RestartCommandSchema, Computer20250124Action, Computer20250124ActionSchema, Computer20251124Action, Computer20251124ActionSchema, ComputerDoubleClickAction, ComputerDoubleClickActionSchema, ComputerHoldKeyAction, ComputerHoldKeyActionSchema, ComputerKeyAction, ComputerKeyActionSchema, ComputerLeftClickAction, ComputerLeftClickActionSchema, ComputerLeftClickDragAction, ComputerLeftClickDragActionSchema, ComputerLeftMouseDownAction, ComputerLeftMouseDownActionSchema, ComputerLeftMouseUpAction, ComputerLeftMouseUpActionSchema, ComputerMiddleClickAction, ComputerMiddleClickActionSchema, ComputerMouseMoveAction, ComputerMouseMoveActionSchema, ComputerRightClickAction, ComputerRightClickActionSchema, ComputerScreenshotAction, ComputerScreenshotActionSchema, ComputerScrollAction, ComputerScrollActionSchema, ComputerTripleClickAction, ComputerTripleClickActionSchema, ComputerTypeAction, ComputerTypeActionSchema, ComputerWaitAction, ComputerWaitActionSchema, ComputerZoomAction, ComputerZoomActionSchema, Memory20250818Command, Memory20250818CommandSchema, Memory20250818CreateCommand, Memory20250818CreateCommandSchema, Memory20250818DeleteCommand, Memory20250818DeleteCommandSchema, Memory20250818InsertCommand, Memory20250818InsertCommandSchema, Memory20250818RenameCommand, Memory20250818RenameCommandSchema, Memory20250818StrReplaceCommand, Memory20250818StrReplaceCommandSchema, Memory20250818ViewCommand, Memory20250818ViewCommandSchema, MemoryTool20250818, MemoryTool20250818Options, TextEditor20250728Command, TextEditor20250728CommandSchema, TextEditor20250728CreateCommand, TextEditor20250728CreateCommandSchema, TextEditor20250728InsertCommand, TextEditor20250728InsertCommandSchema, TextEditor20250728StrReplaceCommand, TextEditor20250728StrReplaceCommandSchema, TextEditor20250728ViewCommand, TextEditor20250728ViewCommandSchema };
366
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","names":["Anthropic","z","Memory20250818ViewCommandSchema","ZodLiteral","ZodString","core","$strip","ZodObject","Memory20250818CreateCommandSchema","Memory20250818StrReplaceCommandSchema","Memory20250818InsertCommandSchema","ZodNumber","Memory20250818DeleteCommandSchema","Memory20250818RenameCommandSchema","Memory20250818CommandSchema","ZodDiscriminatedUnion","Memory20250818ViewCommand","infer","Memory20250818CreateCommand","Memory20250818StrReplaceCommand","Memory20250818InsertCommand","Memory20250818DeleteCommand","Memory20250818RenameCommand","Memory20250818Command","MemoryTool20250818Options","Promise","MemoryTool20250818","Beta","BetaMemoryTool20250818","TextEditor20250728ViewCommandSchema","ZodTuple","ZodOptional","TextEditor20250728StrReplaceCommandSchema","TextEditor20250728CreateCommandSchema","TextEditor20250728InsertCommandSchema","TextEditor20250728CommandSchema","TextEditor20250728ViewCommand","TextEditor20250728StrReplaceCommand","TextEditor20250728CreateCommand","TextEditor20250728InsertCommand","TextEditor20250728Command","Computer20251124Action","Computer20250124Action","ComputerZoomAction","ComputerScreenshotAction","ComputerLeftClickAction","ComputerRightClickAction","ComputerMiddleClickAction","ComputerDoubleClickAction","ComputerTripleClickAction","ComputerLeftClickDragAction","ComputerLeftMouseDownAction","ComputerLeftMouseUpAction","ComputerScrollAction","ComputerTypeAction","ComputerKeyAction","ComputerMouseMoveAction","ComputerHoldKeyAction","ComputerWaitAction","ComputerScreenshotActionSchema","ComputerLeftClickActionSchema","ComputerRightClickActionSchema","ComputerMiddleClickActionSchema","ComputerDoubleClickActionSchema","ComputerTripleClickActionSchema","ComputerLeftClickDragActionSchema","ComputerLeftMouseDownActionSchema","ComputerLeftMouseUpActionSchema","ComputerScrollActionSchema","ZodEnum","ComputerTypeActionSchema","ComputerKeyActionSchema","ComputerMouseMoveActionSchema","ComputerHoldKeyActionSchema","ComputerWaitActionSchema","ComputerZoomActionSchema","Computer20250124ActionSchema","Computer20251124ActionSchema","Bash20250124ExecuteCommandSchema","Bash20250124RestartCommandSchema","Bash20250124CommandSchema","ZodUnion","Bash20250124ExecuteCommand","Bash20250124RestartCommand","Bash20250124Command"],"sources":["../../src/tools/types.d.ts"],"sourcesContent":["import Anthropic from \"@anthropic-ai/sdk\";\nimport { z } from \"zod/v4\";\n/**\n * Memory tool command types as defined by Anthropic's memory tool API.\n * @beta\n * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/memory-tool\n */\nexport declare const Memory20250818ViewCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818CreateCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818StrReplaceCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818InsertCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n insert_text: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818DeleteCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"delete\">;\n path: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818RenameCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"rename\">;\n old_path: z.ZodString;\n new_path: z.ZodString;\n}, z.core.$strip>;\nexport declare const Memory20250818CommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n insert_text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"delete\">;\n path: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"rename\">;\n old_path: z.ZodString;\n new_path: z.ZodString;\n}, z.core.$strip>], \"command\">;\nexport type Memory20250818ViewCommand = z.infer<typeof Memory20250818ViewCommandSchema>;\nexport type Memory20250818CreateCommand = z.infer<typeof Memory20250818CreateCommandSchema>;\nexport type Memory20250818StrReplaceCommand = z.infer<typeof Memory20250818StrReplaceCommandSchema>;\nexport type Memory20250818InsertCommand = z.infer<typeof Memory20250818InsertCommandSchema>;\nexport type Memory20250818DeleteCommand = z.infer<typeof Memory20250818DeleteCommandSchema>;\nexport type Memory20250818RenameCommand = z.infer<typeof Memory20250818RenameCommandSchema>;\nexport type Memory20250818Command = z.infer<typeof Memory20250818CommandSchema>;\n/**\n * Options for creating a memory tool.\n */\nexport interface MemoryTool20250818Options {\n /**\n * Optional execute function that handles memory command execution.\n * In LangChain, this is typically handled separately when processing tool calls,\n * but this option is provided for compatibility with the AI SDK pattern.\n * Note: This option is currently unused but reserved for future use.\n */\n execute: (action: Memory20250818Command) => Promise<string> | string;\n}\n/**\n * Memory tool type definition.\n */\nexport type MemoryTool20250818 = Anthropic.Beta.BetaMemoryTool20250818;\n/**\n * Text editor tool command types for Claude 4.x models.\n * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/text-editor-tool\n */\nexport declare const TextEditor20250728ViewCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n view_range: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;\n}, z.core.$strip>;\nexport declare const TextEditor20250728StrReplaceCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>;\nexport declare const TextEditor20250728CreateCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>;\nexport declare const TextEditor20250728InsertCommandSchema: z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n new_str: z.ZodString;\n}, z.core.$strip>;\nexport declare const TextEditor20250728CommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n command: z.ZodLiteral<\"view\">;\n path: z.ZodString;\n view_range: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"str_replace\">;\n path: z.ZodString;\n old_str: z.ZodString;\n new_str: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"create\">;\n path: z.ZodString;\n file_text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n command: z.ZodLiteral<\"insert\">;\n path: z.ZodString;\n insert_line: z.ZodNumber;\n new_str: z.ZodString;\n}, z.core.$strip>], \"command\">;\nexport type TextEditor20250728ViewCommand = z.infer<typeof TextEditor20250728ViewCommandSchema>;\nexport type TextEditor20250728StrReplaceCommand = z.infer<typeof TextEditor20250728StrReplaceCommandSchema>;\nexport type TextEditor20250728CreateCommand = z.infer<typeof TextEditor20250728CreateCommandSchema>;\nexport type TextEditor20250728InsertCommand = z.infer<typeof TextEditor20250728InsertCommandSchema>;\nexport type TextEditor20250728Command = z.infer<typeof TextEditor20250728CommandSchema>;\n/**\n * Computer use tool action types for Claude Opus 4.5.\n * Includes zoom action which is not available in earlier versions.\n * @see https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool\n */\nexport type Computer20251124Action = Computer20250124Action | ComputerZoomAction;\n/**\n * Computer use tool action types for Claude Sonnet 4.5, Haiku 4.5, Opus 4.1, Sonnet 4, Opus 4, and Sonnet 3.7 versions.\n * @see https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use-tool\n */\nexport type Computer20250124Action = ComputerScreenshotAction | ComputerLeftClickAction | ComputerRightClickAction | ComputerMiddleClickAction | ComputerDoubleClickAction | ComputerTripleClickAction | ComputerLeftClickDragAction | ComputerLeftMouseDownAction | ComputerLeftMouseUpAction | ComputerScrollAction | ComputerTypeAction | ComputerKeyAction | ComputerMouseMoveAction | ComputerHoldKeyAction | ComputerWaitAction;\nexport declare const ComputerScreenshotActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"screenshot\">;\n}, z.core.$strip>;\nexport declare const ComputerLeftClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerRightClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"right_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerMiddleClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"middle_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerDoubleClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"double_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerTripleClickActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"triple_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerLeftClickDragActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_click_drag\">;\n start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerLeftMouseDownActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_down\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerLeftMouseUpActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_up\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerScrollActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"scroll\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n scroll_direction: z.ZodEnum<{\n down: \"down\";\n left: \"left\";\n right: \"right\";\n up: \"up\";\n }>;\n scroll_amount: z.ZodNumber;\n}, z.core.$strip>;\nexport declare const ComputerTypeActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"type\">;\n text: z.ZodString;\n}, z.core.$strip>;\nexport declare const ComputerKeyActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"key\">;\n key: z.ZodString;\n}, z.core.$strip>;\nexport declare const ComputerMouseMoveActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"mouse_move\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const ComputerHoldKeyActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"hold_key\">;\n key: z.ZodString;\n}, z.core.$strip>;\nexport declare const ComputerWaitActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"wait\">;\n duration: z.ZodOptional<z.ZodNumber>;\n}, z.core.$strip>;\nexport declare const ComputerZoomActionSchema: z.ZodObject<{\n action: z.ZodLiteral<\"zoom\">;\n region: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>;\nexport declare const Computer20250124ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n action: z.ZodLiteral<\"screenshot\">;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"right_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"middle_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"double_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"triple_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click_drag\">;\n start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_down\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_up\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"scroll\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n scroll_direction: z.ZodEnum<{\n down: \"down\";\n left: \"left\";\n right: \"right\";\n up: \"up\";\n }>;\n scroll_amount: z.ZodNumber;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"type\">;\n text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"mouse_move\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"hold_key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"wait\">;\n duration: z.ZodOptional<z.ZodNumber>;\n}, z.core.$strip>], \"action\">;\nexport declare const Computer20251124ActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{\n action: z.ZodLiteral<\"screenshot\">;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"right_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"middle_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"double_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"triple_click\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_click_drag\">;\n start_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n end_coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_down\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"left_mouse_up\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"scroll\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n scroll_direction: z.ZodEnum<{\n down: \"down\";\n left: \"left\";\n right: \"right\";\n up: \"up\";\n }>;\n scroll_amount: z.ZodNumber;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"type\">;\n text: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"mouse_move\">;\n coordinate: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"hold_key\">;\n key: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"wait\">;\n duration: z.ZodOptional<z.ZodNumber>;\n}, z.core.$strip>, z.ZodObject<{\n action: z.ZodLiteral<\"zoom\">;\n region: z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>;\n}, z.core.$strip>], \"action\">;\nexport type ComputerScreenshotAction = z.infer<typeof ComputerScreenshotActionSchema>;\nexport type ComputerLeftClickAction = z.infer<typeof ComputerLeftClickActionSchema>;\nexport type ComputerRightClickAction = z.infer<typeof ComputerRightClickActionSchema>;\nexport type ComputerMiddleClickAction = z.infer<typeof ComputerMiddleClickActionSchema>;\nexport type ComputerDoubleClickAction = z.infer<typeof ComputerDoubleClickActionSchema>;\nexport type ComputerTripleClickAction = z.infer<typeof ComputerTripleClickActionSchema>;\nexport type ComputerLeftClickDragAction = z.infer<typeof ComputerLeftClickDragActionSchema>;\nexport type ComputerLeftMouseDownAction = z.infer<typeof ComputerLeftMouseDownActionSchema>;\nexport type ComputerLeftMouseUpAction = z.infer<typeof ComputerLeftMouseUpActionSchema>;\nexport type ComputerScrollAction = z.infer<typeof ComputerScrollActionSchema>;\nexport type ComputerTypeAction = z.infer<typeof ComputerTypeActionSchema>;\nexport type ComputerKeyAction = z.infer<typeof ComputerKeyActionSchema>;\nexport type ComputerMouseMoveAction = z.infer<typeof ComputerMouseMoveActionSchema>;\nexport type ComputerHoldKeyAction = z.infer<typeof ComputerHoldKeyActionSchema>;\nexport type ComputerWaitAction = z.infer<typeof ComputerWaitActionSchema>;\nexport type ComputerZoomAction = z.infer<typeof ComputerZoomActionSchema>;\n/**\n * Bash tool command types for Claude 4 models and Claude 3.7.\n * @see https://docs.anthropic.com/en/docs/agents-and-tools/tool-use/bash-tool\n */\nexport declare const Bash20250124ExecuteCommandSchema: z.ZodObject<{\n command: z.ZodString;\n}, z.core.$strip>;\nexport declare const Bash20250124RestartCommandSchema: z.ZodObject<{\n restart: z.ZodLiteral<true>;\n}, z.core.$strip>;\nexport declare const Bash20250124CommandSchema: z.ZodUnion<readonly [z.ZodObject<{\n command: z.ZodString;\n}, z.core.$strip>, z.ZodObject<{\n restart: z.ZodLiteral<true>;\n}, z.core.$strip>]>;\nexport type Bash20250124ExecuteCommand = z.infer<typeof Bash20250124ExecuteCommandSchema>;\nexport type Bash20250124RestartCommand = z.infer<typeof Bash20250124RestartCommandSchema>;\nexport type Bash20250124Command = z.infer<typeof Bash20250124CommandSchema>;\n//# sourceMappingURL=types.d.ts.map"],"mappings":"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"}