Get Agent Nexus running in 3 minutes! ⚡
- Node.js 18+ installed
- Terminal/Command line access
# Visit https://ollama.ai and download for your OS
# Or on macOS:
brew install ollama# Terminal 1: Start Ollama server
ollama serve
# Terminal 2: Pull Llama 3
ollama pull llama3cd my-app
DATABASE_URL="file:./dev.db" npm run devVisit: http://localhost:3001
Navigate to Meeting Room and start chatting with the Llama 3 Agent! 🦙
cd my-app
# Edit .env.local and add your keys:
# OPENAI_API_KEY="sk-your-key-here"
# GOOGLE_API_KEY="your-gemini-key-here"DATABASE_URL="file:./dev.db" npm run devVisit: http://localhost:3001
# List agents
curl http://localhost:3001/api/agents
# Invoke an agent (replace AGENT_ID with one from above)
curl -X POST http://localhost:3001/api/invoke \
-H "Content-Type: application/json" \
-d '{"agentId": "AGENT_ID", "message": "Hello!"}'- Landing Page (
/) - Overview and hero section - Dashboard (
/dashboard) - System metrics and monitoring - Meeting Room (
/meeting) - Chat with AI agents in real-time - Agents (
/agents) - Manage and create new agents - Settings (
/settings) - Configuration options
# View database in browser
npx prisma studio
# Opens at http://localhost:5555
# Reset database (if needed)
DATABASE_URL="file:./dev.db" npx prisma migrate reset- 🦙 Llama 3 Assistant - Local via Ollama
- 🧠 GPT-4 Strategist - OpenAI (requires API key)
- ✨ Gemini Analyst - Google (requires API key)
- 💻 Code Helper - Local via Ollama
- ⚡ GPT-3.5 Turbo - OpenAI (requires API key)
- Backend Documentation: See
BACKEND_README.md - Implementation Details: See
IMPLEMENTATION_SUMMARY.md - Main README: See
README.md
Port already in use:
lsof -i :3001
kill -9 <PID>Ollama not connecting:
# Make sure Ollama is running
ollama serve
# Test Ollama directly
curl http://localhost:11434/api/tagsDatabase errors:
# Reset and reseed
DATABASE_URL="file:./dev.db" npx prisma migrate resetYou now have a fully functional AI agent collaboration platform running locally!