Files
InterviewAI/run.bat
2026-05-22 15:16:01 +03:00

14 lines
231 B
Plaintext

@echo off
echo Starting Meeting Assistant...
REM Check Python
python --version >nul 2>&1
if errorlevel 1 (
echo Python not found. Please install Python 3.8+
pause
exit /b 1
)
REM Run the assistant
python main.py
pause