@echo off REM setup.bat - Initialize development environment (Windows) echo 🔧 Setting up Multi-Agent System... REM Create virtual environment if not exist "venv" ( echo 📦 Creating virtual environment... python -m venv venv ) REM Activate virtual environment echo ✅ Activating virtual environment... call venv\Scripts\activate.bat REM Install dependencies echo 📥 Installing Python dependencies... python -m pip install --upgrade pip setuptools wheel pip install -r requirements.txt pip install -r requirements-dev.txt REM Setup frontend if exist "frontend" ( echo 🌐 Setting up frontend... cd frontend call npm install cd .. ) REM Create .env file if it doesn't exist if not exist ".env" ( echo 📋 Creating .env file... copy .env.example .env echo ⚠️ Please update .env with your configuration ) echo ✨ Setup complete! Run 'scripts\run.bat' to start the system pause