(args: any, context: ToolContext)
| 18 | // Interface that all tool implementations must follow |
| 19 | export interface ToolHandler { |
| 20 | execute(args: any, context: ToolContext): Promise<ToolResponse>; |
| 21 | } |
| 22 | |
| 23 | // Helper functions for creating responses |
no outgoing calls
no test coverage detected