MCPcopy Index your code
hub / github.com/TanStack/ai / listRunLogFiles

Function listRunLogFiles

packages/ai-code-mode/models-eval/run-eval.ts:491–498  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

489}
490
491function listRunLogFiles(): Array<string> {
492 if (!existsSync(LOG_DIR)) return []
493 return readdirSync(LOG_DIR)
494 .filter(
495 (name) => name.endsWith('.json') && !name.startsWith('results-summary-'),
496 )
497 .map((name) => join(LOG_DIR, name))
498}
499
500function readRunLog(path: string): RunLogPayload | null {
501 try {

Callers 2

judgeLatestSessionFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected