mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-06 09:20:33 +00:00
58f0fcab57
Signed-off-by: Andriy Mulyar <andriy.mulyar@gmail.com>
10 lines
266 B
Python
10 lines
266 B
Python
from api_v1.routes import chat, completions, engines, health
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
router.include_router(chat.router)
|
|
router.include_router(completions.router)
|
|
router.include_router(engines.router)
|
|
router.include_router(health.router)
|