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

Function load_baselines

analysis.py:108–113  ·  view source on GitHub ↗

Load cached baselines.json if it exists.

()

Source from the content-addressed store, hash-verified

106
107
108def load_baselines() -> dict | None:
109 """Load cached baselines.json if it exists."""
110 if not os.path.exists(BASELINES_PATH):
111 return None
112 with open(BASELINES_PATH, "r") as f:
113 return json.load(f)
114
115
116# ---------------------------------------------------------------------------

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected