quivr/backend/routes/misc_routes.py
Ruben1701 8fb245fe2a
Improved api docs (#336)
* auyto removed

* updated the api docs

* fixed missing logic in api_key_route + chat_route

* Update settings.json

---------

Co-authored-by: Ruben170 <35116541+Ruben170@users.noreply.github.com>
2023-06-15 14:43:40 +02:00

11 lines
192 B
Python

from fastapi import APIRouter
misc_router = APIRouter()
@misc_router.get("/")
async def root():
"""
Root endpoint to check the status of the API.
"""
return {"status": "OK"}