MCPcopy Create free account
hub / github.com/garrytan/gstack / BenchmarkEntry

Interface BenchmarkEntry

test/helpers/benchmark-runner.ts:27–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27export interface BenchmarkEntry {
28 provider: string;
29 family: 'claude' | 'gpt' | 'gemini';
30 available: boolean;
31 unavailable_reason?: string;
32 result?: RunResult;
33 costUsd?: number;
34 /** Judge score 0-10 across dimensions. Populated separately by the judge step. */
35 qualityScore?: number;
36 qualityDetails?: Record<string, number>;
37}
38
39export interface BenchmarkReport {
40 prompt: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected