| 29 | } |
| 30 | |
| 31 | export interface ClaudeTestOptions { |
| 32 | system?: string; |
| 33 | messages: MessageParam[]; |
| 34 | max_tokens?: number; |
| 35 | model?: string; |
| 36 | temperature?: number; |
| 37 | debug?: boolean; |
| 38 | main?: boolean; |
| 39 | solution: string; |
| 40 | } |
| 41 | |
| 42 | export type TestResult = { |
| 43 | pass: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected