| 17 | const questionsPath = join(process.cwd(), 'evals/questions.json'); |
| 18 | |
| 19 | export interface Question { |
| 20 | id: string; |
| 21 | question: string; |
| 22 | category: string; |
| 23 | difficulty: string; |
| 24 | reference_answer: string; |
| 25 | notes: string; |
| 26 | } |
| 27 | |
| 28 | const allQuestions: Question[] = JSON.parse(readFileSync(questionsPath, 'utf-8')); |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected