TestExecution represents a single test execution
| 44 | |
| 45 | // TestExecution represents a single test execution |
| 46 | type TestExecution struct { |
| 47 | TestCase TestCase `json:"test_case"` |
| 48 | ModelName string `json:"model_name"` |
| 49 | Config TestConfig `json:"config"` |
| 50 | } |
| 51 | |
| 52 | // ActualToolCall represents the actual function call made by the model |
| 53 | type ActualToolCall struct { |
nothing calls this directly
no outgoing calls
no test coverage detected