MCPcopy Create free account
hub / github.com/RightNow-AI/autokernel / load_orchestration_state

Function load_orchestration_state

verify.py:314–319  ·  view source on GitHub ↗

Load workspace/orchestration_state.json if it exists.

()

Source from the content-addressed store, hash-verified

312# ---------------------------------------------------------------------------
313
314def load_orchestration_state() -> Optional[Dict]:
315 """Load workspace/orchestration_state.json if it exists."""
316 if not os.path.exists(ORCHESTRATION_STATE):
317 return None
318 with open(ORCHESTRATION_STATE, "r") as f:
319 return json.load(f)
320
321
322def discover_optimized_kernels() -> List[KernelReplacement]:

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected