File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " transformerlab"
7- version = " 0.0.16 "
7+ version = " 0.0.17 "
88description = " Python SDK for Transformer Lab"
99readme = " README.md"
1010requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ def set_organization_id(organization_id: str | None) -> None:
2727
2828
2929def get_workspace_dir () -> str :
30+ # Remote SkyPilot workspace override (highest precedence)
31+ # Only return container workspace path when value is exactly "true"
32+ if os .getenv ("_TFL_REMOTE_SKYPILOT_WORKSPACE" ) == "true" :
33+ return "/workspace"
34+
3035 # Explicit override wins
3136 if "TFL_WORKSPACE_DIR" in os .environ :
3237 value = os .environ ["TFL_WORKSPACE_DIR" ]
You can’t perform that action at this time.
0 commit comments