()
| 27 | |
| 28 | |
| 29 | def _resolve_sandbox_image() -> str: |
| 30 | image = load_settings().runtime.image |
| 31 | if not image: |
| 32 | raise RuntimeError( |
| 33 | "strix_image is not configured. Set it in ~/.strix/cli-config.json.", |
| 34 | ) |
| 35 | return image |
| 36 | |
| 37 | |
| 38 | async def run_cli(args: Any) -> None: # noqa: PLR0915 |
no test coverage detected