Buckets:

boylnwzav1's picture
download
raw
3.47 kB
@echo off
REM ============================================================
REM Omega Archon Master Fusion v6.2 — Quick Start Script
REM ============================================================
REM Architect: ไชยภพ นิลแพทยื
REM Integrity: LOCKED
REM ============================================================
cls
echo.
echo ============================================================
echo Omega-ARCHON MASTER FUSION v6.2 — Quick Start
echo Architect: ไชยภพ นิลแพทยื
echo Integrity: LOCKED
echo ============================================================
echo.
REM ----- Check prerequisites -----
echo [STEP 1/4] Checking prerequisites...
echo.
where python >nul 2>nul
if %ERRORLEVEL% NEQ 0 (
echo [WARNING] Python not found. Install Python 3.10+ from:
echo https://www.python.org/downloads/
echo.
set PYTHON_OK=0
) else (
echo [OK] Python found
python --version
set PYTHON_OK=1
)
where dotnet >nul 2>nul
if %ERRORLEVEL% NEQ 0 (
echo [WARNING] .NET SDK not found. Install .NET 8.0+ from:
echo https://dotnet.microsoft.com/download
echo.
set DOTNET_OK=0
) else (
echo [OK] .NET SDK found
dotnet --version
set DOTNET_OK=1
)
echo.
echo -----
REM ----- Install Python dependencies -----
echo [STEP 2/4] Installing Python dependencies...
if %PYTHON_OK%==1 (
pip install flask pydantic httpx 2>nul
if %ERRORLEVEL% EQU 0 (
echo [OK] Python packages installed
) else (
echo [WARNING] pip install failed — try manually: pip install flask pydantic httpx
)
) else (
echo [SKIP] Python not available
)
echo.
echo -----
REM ----- Start Swarm API (background) -----
echo [STEP 3/4] Starting Omega Swarm API in background...
if %PYTHON_OK%==1 (
start "Omega Swarm API" cmd /c "python omega_archon_swarm.py"
echo [OK] Swarm API starting on http://localhost:5000
timeout /t 3 /nobreak >nul
) else (
echo [SKIP] Swarm API requires Python
)
echo.
echo -----
REM ----- Run Master System -----
echo [STEP 4/4] Executing Omega Archon Master Fusion...
echo.
if %PYTHON_OK%==1 (
echo Press Ctrl+C to stop at any time
echo.
python OmegaArchon_MasterFusion_v6.py
) else if %DOTNET_OK%==1 (
echo Compiling C# version...
dotnet new console -n OmegaArchon_Run -o .omega_run_temp --force >nul
copy OmegaArchon_MasterFusion_v6.cs .omega_run_temp\Program.cs /y >nul
dotnet run --project .omega_run_temp
rmdir /s /q .omega_run_temp 2>nul
) else (
echo ============================================================
echo [ERROR] No runtime available!
echo.
echo Please install one of the following:
echo - Python 3.10+ (recommended)
echo - .NET SDK 8.0+
echo.
echo Then run this script again.
echo ============================================================
echo.
echo In the meantime, check the Omega Archon system files:
echo - OmegaArchon_MasterFusion_v6.cs (C# source)
echo - OmegaArchon_MasterFusion_v6.py (Python source)
echo - omega_archon_swarm.py (Python Swarm API)
echo - demo.ps1 (PowerShell demo)
echo.
)
echo.
echo ============================================================
echo Session complete. Press any key to exit.
echo ============================================================
pause >nul

Xet Storage Details

Size:
3.47 kB
·
Xet hash:
d920e9b054415ec093075758a6b3a885f70d46d14c75779f722b90d293ff77e1

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.