MCPcopy
hub / github.com/rohitg00/agentmemory / LongMemEvalEntry

Interface LongMemEvalEntry

benchmark/longmemeval-bench.ts:10–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import { readFileSync, writeFileSync, existsSync } from "node:fs";
9
10interface 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
22interface SessionChunk {
23 sessionId: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected