ToolExecutor handles the execution of tool calls
| 11 | |
| 12 | // ToolExecutor handles the execution of tool calls |
| 13 | type ToolExecutor struct { |
| 14 | productService *ProductService |
| 15 | cartService *CartService |
| 16 | } |
| 17 | |
| 18 | // NewToolExecutor creates a new tool executor |
| 19 | func NewToolExecutor(productService *ProductService, cartService *CartService) *ToolExecutor { |
nothing calls this directly
no outgoing calls
no test coverage detected