Initial commit: meeting assistant

This commit is contained in:
Charles Wambua
2026-05-22 15:16:01 +03:00
commit b7b7397876
18 changed files with 155011 additions and 0 deletions

14
run.bat Normal file
View File

@@ -0,0 +1,14 @@
@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