Skip to content

Commit

Permalink
Merge pull request #143 from langchain-ai/infra/add-health-check
Browse files Browse the repository at this point in the history
Add health check
  • Loading branch information
langchain-infra authored Jan 28, 2024
2 parents 4cc214d + 14b81c5 commit 814032b
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 814032b

Please sign in to comment.