Added health endpoint

Signed-off-by: Andriy Mulyar <andriy.mulyar@gmail.com>
pull/1244/head
Andriy Mulyar 1 year ago committed by GitHub
parent b4dbbd1485
commit 58f0fcab57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
from api_v1.routes import chat, completions, engines
from api_v1.routes import chat, completions, engines, health
from fastapi import APIRouter
router = APIRouter()
@ -6,3 +6,4 @@ router = APIRouter()
router.include_router(chat.router)
router.include_router(completions.router)
router.include_router(engines.router)
router.include_router(health.router)

Loading…
Cancel
Save