| 17 | const __dirname = dirname(fileURLToPath(import.meta.url)); |
| 18 | |
| 19 | interface EvalQuery { |
| 20 | query: string; |
| 21 | expected_doc: string; |
| 22 | difficulty: string; |
| 23 | intent: string; // Domain context hint for future intent-aware retrieval |
| 24 | notes: string; |
| 25 | } |
| 26 | |
| 27 | interface SearchResult { |
| 28 | file: string; |
nothing calls this directly
no outgoing calls
no test coverage detected