(*args: str)
| 61 | |
| 62 | |
| 63 | def _run_wiki(*args: str) -> int: |
| 64 | script = PROJECT_ROOT / "agents" / "wiki-agent" / "main.py" |
| 65 | if not script.exists(): |
| 66 | typer.echo(f"[error] wiki agent not found: {script}", err=True) |
| 67 | return 1 |
| 68 | return _run_python(script, *args) |
| 69 | |
| 70 | |
| 71 | @app.callback() |
no test coverage detected