ExpectedToolPath represents one valid execution path
| 23 | |
| 24 | // ExpectedToolPath represents one valid execution path |
| 25 | type ExpectedToolPath struct { |
| 26 | Name string `json:"name"` |
| 27 | Description string `json:"description,omitempty"` |
| 28 | Tools []ExpectedToolCall `json:"tools"` |
| 29 | } |
| 30 | |
| 31 | // ExpectedToolCall represents the expected function call |
| 32 | type ExpectedToolCall struct { |
nothing calls this directly
no outgoing calls
no test coverage detected