MCPcopy Create free account
hub / github.com/braintrustdata/bash-agent-evals / Question

Interface Question

evals/shared.ts:19–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17const questionsPath = join(process.cwd(), 'evals/questions.json');
18
19export interface Question {
20 id: string;
21 question: string;
22 category: string;
23 difficulty: string;
24 reference_answer: string;
25 notes: string;
26}
27
28const allQuestions: Question[] = JSON.parse(readFileSync(questionsPath, 'utf-8'));
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected