修改了数据集上传,修改了模型配置页面

This commit is contained in:
2026-01-14 16:35:22 +08:00
parent e1ab76a9a1
commit 43b6018a3e
19 changed files with 1058 additions and 1231 deletions

10
request/start-backend.bat Normal file
View File

@@ -0,0 +1,10 @@
@echo off
echo Starting Backend API Server on Port 3000...
echo.
echo Backend API: http://localhost:3000/models/
echo Press Ctrl+C to stop the server
echo.
cd /d "%~dp0"
set PYTHONPATH=src
/d/Softwares/Anaconda/python -m uvicorn src.core.app:app --host 0.0.0.0 --port 3000
pause