ToolCallResult represents the result of executing a tool call
| 41 | |
| 42 | // ToolCallResult represents the result of executing a tool call |
| 43 | type ToolCallResult struct { |
| 44 | CallID string `json:"call_id"` |
| 45 | ToolName string `json:"tool_name"` |
| 46 | Success bool `json:"success"` |
| 47 | Result interface{} `json:"result,omitempty"` |
| 48 | Error string `json:"error,omitempty"` |
| 49 | Arguments string `json:"arguments"` |
| 50 | } |
| 51 | |
| 52 | // CartSummary represents the current state of a shopping cart |
| 53 | type CartSummary struct { |
nothing calls this directly
no outgoing calls
no test coverage detected