Return the per-agent local path without creating or hydrating it.
(agent_id: uuid.UUID)
| 2608 | |
| 2609 | |
| 2610 | def _agent_workspace_root(agent_id: uuid.UUID) -> Path: |
| 2611 | """Return the per-agent local path without creating or hydrating it.""" |
| 2612 | return WORKSPACE_ROOT / str(agent_id) |
| 2613 | |
| 2614 | |
| 2615 | def _non_empty_paths(*paths: str | None) -> list[str] | None: |
no outgoing calls
no test coverage detected