-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch_victor.bat
More file actions
80 lines (72 loc) · 2.67 KB
/
Copy pathlaunch_victor.bat
File metadata and controls
80 lines (72 loc) · 2.67 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
80
@echo off
REM Victor Interactive Runtime Launcher
REM Version: 2.0.0-QUANTUM-FRACTAL
REM Launches the production interactive runtime with all systems
echo ╔════════════════════════════════════════════════════════════════════╗
echo ║ VICTOR INTERACTIVE RUNTIME LAUNCHER ║
echo ║ Quantum-Fractal Superintelligence ║
echo ╚════════════════════════════════════════════════════════════════════╝
echo.
REM Check Python
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo ❌ Error: Python not found. Please install Python 3.8+
pause
exit /b 1
)
echo ✓ Using: python
echo.
REM Check dependencies
echo Checking dependencies...
python -c "import numpy, yaml" 2>nul
if %errorlevel% neq 0 (
echo ⚠ Missing dependencies. Installing...
python -m pip install -q -r requirements.txt
echo ✓ Dependencies installed
) else (
echo ✓ Dependencies satisfied
)
echo.
REM Check for Godot (optional)
where godot >nul 2>&1
if %errorlevel% equ 0 (
echo ✓ Godot detected (Visual Engine available^)
echo Tip: Open visual_engine\godot_project\project.godot and press F5
) else (
echo ℹ Godot not found (Visual Engine disabled^)
echo Install Godot 4+ for 3D avatar visualization
)
echo.
REM Launch options
echo Launch Options:
echo 1^) Interactive Runtime (Full System^)
echo 2^) Interactive Runtime (No Visual^)
echo 3^) Victor Hub Only
echo 4^) Run Tests
echo.
set /p option="Select option [1]: "
if "%option%"=="" set option=1
if "%option%"=="1" (
echo.
echo Launching Victor Interactive Runtime...
echo Tip: Type 'help' for commands, 'menu' for interactive menu
echo.
python victor_interactive.py
) else if "%option%"=="2" (
echo.
echo Launching Victor Interactive Runtime (No Visual^)...
python victor_interactive.py
) else if "%option%"=="3" (
echo.
echo Launching Victor Hub Only...
python victor_hub\victor_boot.py --mode cli
) else if "%option%"=="4" (
echo.
echo Running Tests...
python -c "import asyncio; from victor_interactive import VictorInteractive; async def test(): runtime = VictorInteractive(); print('✓ Runtime imports successfully'); print('✓ Quantum-fractal interface initialized'); print('✓ Session manager initialized'); print('All systems operational'); asyncio.run(test())"
) else (
echo Invalid option
pause
exit /b 1
)
pause