File size: 630 Bytes
c024705
 
 
 
 
 
eeacc46
923dca5
c024705
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
echo ================================================
echo AIMHSA - AI Mental Health Support Assistant
echo ================================================
echo.
echo Starting AIMHSA system...
echo Backend API: https://prodevroger-ishingiro.hf.space
echo Frontend: https://prodevroger-ishingiro.hf.space
echo.
echo Press Ctrl+C to stop both services
echo.

REM Check if Python is available
python --version >nul 2>&1
if errorlevel 1 (
    echo ERROR: Python is not installed or not in PATH
    echo Please install Python and try again
    pause
    exit /b 1
)

REM Run the unified launcher
python run_aimhsa.py

pause