ec436095dd
Book-CI / test (macos-latest) (push) Has been cancelled
Book-CI / test (ubuntu-latest) (push) Has been cancelled
Book-CI / test (windows-latest) (push) Has been cancelled
Release Fake Tag / publish (push) Has been cancelled
Deploy / deploy (macos-latest) (push) Has been cancelled
Deploy / deploy (ubuntu-latest) (push) Has been cancelled
Deploy / deploy (windows-latest) (push) Has been cancelled
Release to PyPI / Build & publish sglang-kt (push) Has been cancelled
Release to PyPI / Build kt-kernel (Python 3.11) (push) Has been cancelled
Release to PyPI / Build kt-kernel (Python 3.12) (push) Has been cancelled
Release to PyPI / Publish kt-kernel to PyPI (push) Has been cancelled
11 lines
315 B
Python
11 lines
315 B
Python
from fastapi import APIRouter
|
|
|
|
from .ollama import router as ollama_router
|
|
from .openai import router as openai_router,post_db_creation_operations
|
|
from .web import router as web_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(ollama_router)
|
|
router.include_router(openai_router)
|
|
router.include_router(web_router)
|