"""Entry point: launch the dashboard + API. python main.py Then open http://127.0.0.1:8000 and use Start / Pause / Stop. Requires ANTHROPIC_API_KEY in the environment (or an `ant auth login` profile). """ import uvicorn import config def main() -> None: uvicorn.run("api.app:app", host=config.HOST, port=config.PORT, reload=False) if __name__ == "__main__": main()