mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 09:32:22 +03:00
8fb245fe2a
* 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>
11 lines
192 B
Python
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"}
|