TestConfig holds configuration parameters for the test
| 36 | |
| 37 | // TestConfig holds configuration parameters for the test |
| 38 | type TestConfig struct { |
| 39 | SystemPrompt string `json:"system_prompt,omitempty"` |
| 40 | Temperature float32 `json:"temperature,omitempty"` |
| 41 | TopK int `json:"top_k,omitempty"` |
| 42 | MaxTokens int `json:"max_tokens,omitempty"` |
| 43 | } |
| 44 | |
| 45 | // TestExecution represents a single test execution |
| 46 | type TestExecution struct { |
nothing calls this directly
no outgoing calls
no test coverage detected