| 11 | ) |
| 12 | |
| 13 | type ToolRegistry struct { |
| 14 | tools map[string]toolkit.ToolHandler |
| 15 | description map[string]responses.ToolUnionParam |
| 16 | } |
| 17 | |
| 18 | func NewToolRegistry() *ToolRegistry { |
| 19 | return &ToolRegistry{ |
nothing calls this directly
no outgoing calls
no test coverage detected