refactor: remove tags from APIRouter initialization in chat, model, task, and tool controllers

This commit is contained in:
Archie818 2025-11-03 16:55:51 +00:00
parent 36788b3632
commit 80042edef9
4 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ from utils import traceroot_wrapper as traceroot
logger = traceroot.get_logger("model_controller")
router = APIRouter(tags=["model"])
router = APIRouter()
class ValidateModelRequest(BaseModel):