fix(viz): use relative output path instead of hardcoded absolute path

Made-with: Cursor
This commit is contained in:
Pepijn
2026-03-23 20:17:59 -07:00
parent 6370949e5c
commit c7fd1f47d1
4 changed files with 4 additions and 4 deletions
@@ -18,7 +18,7 @@ CAMERA_KEY = "observation.images.base"
GRID_COLS = 15
GRID_ROWS = 10
THUMB_WIDTH = 160
OUTPUT_DIR = Path("/Users/pepijnkooijmans/Documents/GitHub_local/progress_videos")
OUTPUT_DIR = Path(__file__).resolve().parent / "outputs"
OUTPUT_DIR.mkdir(exist_ok=True)
SEED = 1