Spaces:
Sleeping
Sleeping
File size: 421 Bytes
6b618de | 1 2 3 4 5 6 7 8 9 10 11 | #!/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
|