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

Interface QualityMetrics

benchmark/quality-eval.ts:10–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import { writeFileSync } from "node:fs";
9
10interface QualityMetrics {
11 query: string;
12 category: string;
13 recall_at_5: number;
14 recall_at_10: number;
15 recall_at_20: number;
16 precision_at_5: number;
17 precision_at_10: number;
18 ndcg_at_10: number;
19 mrr: number;
20 relevant_count: number;
21 retrieved_count: number;
22 latency_ms: number;
23}
24
25interface SystemMetrics {
26 system: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected