AdminAI / START.bat
Universities's picture
Upload 3 files
d789b06 verified
Raw
History Blame Contribute Delete
846 Bytes
@echo off
echo ================================================
echo Manager Intelligence Agent - Local Setup
echo ================================================
echo.
echo [1/3] Installing Python packages...
pip install -r requirements.txt
if %errorlevel% neq 0 (
echo ERROR: pip install failed. Check requirements.txt exists.
pause
exit /b 1
)
echo.
echo [2/3] Checking Ollama...
curl -s http://localhost:11434/api/tags >nul 2>&1
if %errorlevel% == 0 (
echo Ollama is running!
) else (
echo WARNING: Ollama not running. Start Ollama first.
echo Download from: https://ollama.com
echo After installing run: ollama pull nomic-embed-text
echo ollama pull llama3
)
echo.
echo [3/3] Starting Manager Intelligence Agent...
echo Open browser at: http://localhost:7860
echo.
python app.py
pause