| 126 | } |
| 127 | |
| 128 | export interface GPTTestOptions { |
| 129 | system?: string; |
| 130 | messages: ChatCompletionMessageParam[]; |
| 131 | model?: string; |
| 132 | temperature?: number; |
| 133 | main?: boolean; |
| 134 | solution: string; |
| 135 | } |
| 136 | |
| 137 | export async function testWithGPT({ |
| 138 | system, |
nothing calls this directly
no outgoing calls
no test coverage detected