refactor(prefetch): clean up unused variables, dead functions, and hardcoded paths

This commit is contained in:
Egon Ruiter
2026-07-16 14:22:04 +02:00
parent ca788833ab
commit 6ade4093de
3 changed files with 8 additions and 74 deletions
+3 -2
View File
@@ -22,8 +22,9 @@ if sys.platform == "win32":
pass
HERE = Path(__file__).resolve().parent.parent
ENGINE = HERE / "olmoe.exe"
SNAP = HERE / "olmoe_i4"
ext = ".exe" if sys.platform == "win32" else ""
ENGINE = HERE / f"olmoe{ext}"
SNAP = os.getenv("SNAP", str(HERE.parent / "olmoe_merged"))
REF_OUT = HERE / "ref_olmoe_real.json"
BOOTSTRAP_REF = HERE / "ref_olmoe_bootstrap.json"