MCPcopy Create free account
hub / github.com/ResearAI/DeepScientist / failed_ids

Function failed_ids

scripts/run_claude_code_yaml_batch.py:33–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

31
32
33def failed_ids() -> list[str]:
34 if not MAIN_LOG.exists():
35 return []
36 text = MAIN_LOG.read_text(errors='ignore')
37 start = text.find('{')
38 if start == -1:
39 return []
40 payload = json.loads(text[start:])
41 return [str(row.get('id')) for row in payload.get('results', []) if row.get('status') != 'ok']
42
43
44def done_ids() -> set[str]:

Callers 1

mainFunction · 0.70

Calls 2

findMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected