Spaces:
Sleeping
Sleeping
Clémentine
commited on
Commit
·
807783e
1
Parent(s):
aaaafe3
fix path
Browse files- yourbench_space/utils.py +1 -1
yourbench_space/utils.py
CHANGED
@@ -127,7 +127,7 @@ class SubprocessManagerGroup:
|
|
127 |
class SubprocessManager:
|
128 |
def __init__(self, session_uid: str):
|
129 |
self.session_uid = session_uid
|
130 |
-
self.path = pathlib.Path(f"app/{session_uid}")
|
131 |
self.path.mkdir(parents=True, exist_ok=True)
|
132 |
self.config_path = pathlib.Path(f"{self.path}/config.yml")
|
133 |
self.command = ["uv", "run", "yourbench", f"--config", str(self.config_path)]
|
|
|
127 |
class SubprocessManager:
|
128 |
def __init__(self, session_uid: str):
|
129 |
self.session_uid = session_uid
|
130 |
+
self.path = pathlib.Path(f"/app/{session_uid}")
|
131 |
self.path.mkdir(parents=True, exist_ok=True)
|
132 |
self.config_path = pathlib.Path(f"{self.path}/config.yml")
|
133 |
self.command = ["uv", "run", "yourbench", f"--config", str(self.config_path)]
|