AgentTestResult represents the result of testing the agent loop
| 93 | |
| 94 | // AgentTestResult represents the result of testing the agent loop |
| 95 | type AgentTestResult struct { |
| 96 | TestCase TestCase `json:"test_case"` |
| 97 | ModelName string `json:"model_name"` |
| 98 | Config TestConfig `json:"config"` |
| 99 | Response *ChatResponse `json:"response"` |
| 100 | Success bool `json:"success"` |
| 101 | MatchedPath string `json:"matched_path,omitempty"` |
| 102 | ErrorMessage string `json:"error_message,omitempty"` |
| 103 | Timestamp time.Time `json:"timestamp"` |
| 104 | ResponseTime time.Duration `json:"response_time"` |
| 105 | } |
| 106 | |
| 107 | // AgentReport contains the results of an agent test suite |
| 108 | type AgentReport struct { |
nothing calls this directly
no outgoing calls
no test coverage detected