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

@ -4,7 +4,7 @@ from app.utils.toolkit.google_calendar_toolkit import GoogleCalendarToolkit
from utils import traceroot_wrapper as traceroot
logger = traceroot.get_logger("tool_controller")
router = APIRouter(tags=["tool"])
router = APIRouter()
@router.post("/install/tool/{tool}", name="install tool")