File size: 846 Bytes
d789b06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@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