#!/bin/bash echo "🧠 Starting DeltaMind AI Operational Intelligence..." cd "$(dirname "$0")/.." if [ ! -f .env ]; then cp .env.example .env echo "⚠️ Created .env file. Please edit it to add your Groq API key." fi echo "🚀 Launching on http://0.0.0.0:7860" echo "💡 Ensure LM Studio is running Qwen 2.5 on port 1234 for local fallback." uvicorn app.main:app --host 0.0.0.0 --port 7860 --reload