()
| 9 | |
| 10 | |
| 11 | def build_server() -> FastAPI: |
| 12 | configure_logging() |
| 13 | app = FastAPI(title="Agent Spec Agent") |
| 14 | agent = build_a2ui_chat_agent(runtime="wayflow") |
| 15 | add_agentspec_fastapi_endpoint(app, agent, path="/") |
| 16 | return app |
| 17 | |
| 18 | |
| 19 | app = build_server() |
no test coverage detected