Fix: AI chat router prefix /ai -> /api/ai (match other routers)
This commit is contained in:
parent
f2954af400
commit
214e3e0111
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ from app.models.user import User
|
|||
from app.services import ai_provider
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
router = APIRouter(prefix="/ai", tags=["AI Coaching"])
|
||||
router = APIRouter(prefix="/api/ai", tags=["AI Coaching"])
|
||||
|
||||
|
||||
@router.post("/chat")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue