()
| 620 | |
| 621 | @app.get("/health") |
| 622 | async def health(): |
| 623 | try: |
| 624 | store.registry.list_projects(allow_cache=True) |
| 625 | return Response(status_code=status.HTTP_200_OK) |
| 626 | except Exception: |
| 627 | return Response(status_code=status.HTTP_503_SERVICE_UNAVAILABLE) |
| 628 | |
| 629 | @app.post("/chat") |
| 630 | async def chat(request: ChatRequest): |
nothing calls this directly
no test coverage detected