Upload 4 files
Browse files
README.md
CHANGED
|
@@ -133,9 +133,9 @@ See `CHANGELOG_V194.md` for the Model Pre-scan Decision Card UI pass.
|
|
| 133 |
See `CHANGELOG_V195.md` for the Runtime CSS Cleanup with Legacy Safety Net pass.
|
| 134 |
|
| 135 |
|
| 136 |
-
Current release: Agentic Space Factory v198.26.
|
| 137 |
|
| 138 |
-
## v198.26.
|
| 139 |
|
| 140 |
- Adds an auditable Target Space override for Build Runs whose generated Space was renamed manually in Hugging Face settings.
|
| 141 |
- Preserves the original generated target Space while using the effective override for future Space Tests and quick links.
|
|
|
|
| 133 |
See `CHANGELOG_V195.md` for the Runtime CSS Cleanup with Legacy Safety Net pass.
|
| 134 |
|
| 135 |
|
| 136 |
+
Current release: Agentic Space Factory v198.26.122.
|
| 137 |
|
| 138 |
+
## v198.26.122 — Target Space Identity Override
|
| 139 |
|
| 140 |
- Adds an auditable Target Space override for Build Runs whose generated Space was renamed manually in Hugging Face settings.
|
| 141 |
- Preserves the original generated target Space while using the effective override for future Space Tests and quick links.
|
app.py
CHANGED
|
@@ -334,7 +334,7 @@ def _target_space_from_events(events: list[dict[str, Any]] | None, *, require_su
|
|
| 334 |
def _resolve_target_space_identity(run_id: str | None, bundle: dict[str, Any], *, bucket_source: str | None, job_url: str | None = None) -> dict[str, Any]:
|
| 335 |
"""Return canonical Space links from all stable run sources.
|
| 336 |
|
| 337 |
-
v198.26.
|
| 338 |
building UI links or validation prefill. The raw/generated target remains
|
| 339 |
available as target_space_original for audit; target_space is the effective
|
| 340 |
repo id to use for future validations and buttons.
|
|
@@ -384,7 +384,7 @@ def _resolve_target_space_identity(run_id: str | None, bundle: dict[str, Any], *
|
|
| 384 |
sources.insert(0, "target_space_override")
|
| 385 |
links_ready = bool(target_space_url and (space_created or runtime_uploaded or space_runtime_known or overlay.get("target_space_override_active")))
|
| 386 |
return {
|
| 387 |
-
"schema_version": "space_identity.
|
| 388 |
"target_space": target,
|
| 389 |
"target_space_id": target,
|
| 390 |
"target_space_known": bool(target),
|
|
|
|
| 334 |
def _resolve_target_space_identity(run_id: str | None, bundle: dict[str, Any], *, bucket_source: str | None, job_url: str | None = None) -> dict[str, Any]:
|
| 335 |
"""Return canonical Space links from all stable run sources.
|
| 336 |
|
| 337 |
+
v198.26.122: apply an auditable Target Space identity override before
|
| 338 |
building UI links or validation prefill. The raw/generated target remains
|
| 339 |
available as target_space_original for audit; target_space is the effective
|
| 340 |
repo id to use for future validations and buttons.
|
|
|
|
| 384 |
sources.insert(0, "target_space_override")
|
| 385 |
links_ready = bool(target_space_url and (space_created or runtime_uploaded or space_runtime_known or overlay.get("target_space_override_active")))
|
| 386 |
return {
|
| 387 |
+
"schema_version": "space_identity.v198_26_122",
|
| 388 |
"target_space": target,
|
| 389 |
"target_space_id": target,
|
| 390 |
"target_space_known": bool(target),
|