LoganResearch's picture
๐Ÿš€ v2.4: Mentor Mode, Revenue Generation, Smart Help
7df1c81
@echo off
REM ARC Engine v2.4 Quick Start (Windows)
REM ======================================
echo.
echo ๐Ÿค– ARC Engine v2.4 - Quick Start
echo =================================
echo.
REM Check if Python is available
python --version >nul 2>&1
if errorlevel 1 (
echo โŒ Python not found. Please install Python 3.10+
pause
exit /b 1
)
echo Checking dependencies...
echo.
REM Check if torch is installed
python -c "import torch" >nul 2>&1
if errorlevel 1 (
echo โš ๏ธ PyTorch not found. Installing core dependencies...
pip install torch transformers accelerate peft bitsandbytes datasets trl safetensors tqdm matplotlib requests
)
REM Check GPU
echo.
echo Checking GPU...
python -c "import torch; print(f'CUDA available: {torch.cuda.is_available()}')"
echo.
echo =================================
echo Starting ARC Engine v2.4...
echo =================================
echo.
echo First run will download the model (~16GB)
echo Type 'help' for commands, 'help ^<topic^>' for specific help
echo.
python arc_engine_v24_full.py
pause