ModelConfigPair represents a model and configuration combination
| 33 | |
| 34 | // ModelConfigPair represents a model and configuration combination |
| 35 | type ModelConfigPair struct { |
| 36 | ModelName string `json:"model_name"` |
| 37 | Config TestConfig `json:"config"` |
| 38 | Score float64 `json:"score"` |
| 39 | } |
| 40 | |
| 41 | // APIRequest represents the API request details |
| 42 | type APIRequest struct { |
nothing calls this directly
no outgoing calls
no test coverage detected