Skip to content

Commit

Permalink
Add health check
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra committed Jan 28, 2024
1 parent 4cc214d commit 14b81c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions backend/app/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

router = APIRouter()


@router.get("/ok")
async def ok():
return {"ok": True}


router.include_router(
assistants_router,
prefix="/assistants",
Expand Down

0 comments on commit 14b81c5

Please sign in to comment.