| 1 | import type { CompressedObservation } from "../src/types.js"; |
| 2 | |
| 3 | export interface LabeledQuery { |
| 4 | query: string; |
| 5 | relevantObsIds: string[]; |
| 6 | description: string; |
| 7 | category: "exact" | "semantic" | "temporal" | "cross-session" | "entity"; |
| 8 | } |
| 9 | |
| 10 | const SESSION_COUNT = 30; |
| 11 | const OBS_PER_SESSION = 8; |
nothing calls this directly
no outgoing calls
no test coverage detected