mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-06 20:49:55 +00:00
9 lines
145 B
Python
9 lines
145 B
Python
from fastapi import APIRouter
|
|
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get('/system-info',tags=['web'])
|
|
def system_info():
|
|
raise NotImplementedError
|