-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_analysis.bat
More file actions
34 lines (29 loc) · 784 Bytes
/
run_analysis.bat
File metadata and controls
34 lines (29 loc) · 784 Bytes
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
27
28
29
30
31
32
33
34
@echo off
REM Meeting Insights Engine - One-Click Runner
REM This batch file runs the analysis with minimal user interaction
echo.
echo ========================================
echo Meeting Insights Engine - Quick Run
echo ========================================
echo.
REM Change to the script directory
cd /d "%~dp0"
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 analysis
echo Running meeting analysis...
echo.
python process_meeting.py
echo.
echo ========================================
echo Analysis complete!
echo ========================================
echo.
echo Press any key to exit...
pause >nul