mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-05 20:19:51 +00:00
6 lines
149 B
Python
6 lines
149 B
Python
from fastapi import APIRouter
|
|
|
|
from .completions import router as completions_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(completions_router)
|