@echo off REM Video Learning Demo Script for Windows REM This script starts the dashboard and opens the video learning page echo ============================================ echo AutoGLM Video Learning Demo echo ============================================ echo. echo Starting Dashboard... echo. REM Start the dashboard in background start "AutoGLM Dashboard" python -m uvicorn dashboard.main:app --host 0.0.0.0 --port 8080 --reload echo Waiting for dashboard to start... timeout /t 3 /nobreak > nul echo. echo Dashboard starting at: http://localhost:8080 echo Opening Video Learning page in browser... echo. REM Open the video learning page start http://localhost:8080/static/video-learning.html echo. echo ============================================ echo Video Learning Demo is ready! echo ============================================ echo. echo Press Ctrl+C to stop the dashboard echo. REM Keep the script running pause