mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2026-05-03 14:11:15 +00:00
Some checks failed
Book-CI / test (push) Has been cancelled
Book-CI / test-1 (push) Has been cancelled
Book-CI / test-2 (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
* Change named 'KT-SFT' to 'kt-sft' * [docs]: update kt-sft name --------- Co-authored-by: ZiWei Yuan <yzwliam@126.com>
10 lines
315 B
Python
10 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)
|