| 8 | import { readFileSync, writeFileSync, existsSync } from "node:fs"; |
| 9 | |
| 10 | interface LongMemEvalEntry { |
| 11 | question_id: string; |
| 12 | question_type: string; |
| 13 | question: string; |
| 14 | question_date: string; |
| 15 | answer: string; |
| 16 | answer_session_ids: string[]; |
| 17 | haystack_dates: string[]; |
| 18 | haystack_session_ids: string[]; |
| 19 | haystack_sessions: Array<Array<{ role: string; content: string; has_answer?: boolean }>>; |
| 20 | } |
| 21 | |
| 22 | interface SessionChunk { |
| 23 | sessionId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected