-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrun_demos.bat
More file actions
79 lines (67 loc) · 2.58 KB
/
run_demos.bat
File metadata and controls
79 lines (67 loc) · 2.58 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@echo off
REM =============================================================================
REM AI Agent Framework - Demo Runner (Windows)
REM Team Falcons | Intel® Unnati Industrial Training Program 2025
REM =============================================================================
echo ============================================================
echo AI Agent Framework - Running All Demos
echo Team Falcons ^| Intel Unnati Program 2025
echo ============================================================
echo.
REM Set PYTHONPATH to project root
set PYTHONPATH=%~dp0
echo PYTHONPATH set to: %PYTHONPATH%
echo.
REM Check Python
python --version >nul 2>&1
if errorlevel 1 (
echo [ERROR] Python not found. Please install Python 3.8+
exit /b 1
)
for /f "tokens=*" %%i in ('python --version') do echo Python version: %%i
echo.
REM Install dependencies if --install flag is passed
if "%1"=="--install" (
echo Installing dependencies...
pip install -r requirements.txt
echo.
)
echo ============================================================
echo 1. Reference Agents Demo ^(Research + Data Processing^)
echo ============================================================
python examples/agents_demo.py
if errorlevel 1 goto :error
echo.
echo ============================================================
echo 2. Tool System Demo ^(Schema Validation^)
echo ============================================================
python examples/tools_demo.py
if errorlevel 1 goto :error
echo.
echo ============================================================
echo 3. YAML Orchestrator Demo ^(State Persistence^)
echo ============================================================
python examples/orchestrator_demo.py
if errorlevel 1 goto :error
echo.
echo ============================================================
echo 4. Structured Logging Demo
echo ============================================================
python examples/logging_demo.py
if errorlevel 1 goto :error
echo.
echo ============================================================
echo 5. OpenVINO Benchmark Demo
echo ============================================================
python examples/openvino_benchmark.py
if errorlevel 1 goto :error
echo.
echo ============================================================
echo [SUCCESS] All Demos Completed Successfully!
echo ============================================================
exit /b 0
:error
echo ============================================================
echo [ERROR] Demo failed! Check the output above.
echo ============================================================
exit /b 1