feat(k1): integrate durable evidence with acquisition lifecycle

This commit is contained in:
DCCONSTRUCTIONS
2026-07-17 17:51:05 +03:00
parent 656f0c524d
commit 007ff9fff2
6 changed files with 1638 additions and 242 deletions
+2 -2
View File
@@ -514,9 +514,9 @@ class VisualizationRuntime:
callback()
def new_live_session_dir(repository_root: Path) -> Path:
def new_live_session_dir(sessions_root: Path) -> Path:
stamp = datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ")
base = repository_root / "sessions" / f"{stamp}_viewer_live"
base = sessions_root / f"{stamp}_viewer_live"
candidate = base
suffix = 1
while candidate.exists():