mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-15 17:49:42 +00:00
Initial commit
This commit is contained in:
commit
18c42e67df
247 changed files with 53775 additions and 0 deletions
10
ktransformers/server/api/__init__.py
Normal file
10
ktransformers/server/api/__init__.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue