Intelligent chatbot with multi-agent routing, flexible LLM providers (Ollama/AWS Bedrock), and multilingual support.
- Intelligent query routing (HR, IT, General agents)
- Ollama (local, $0) or AWS Bedrock (cloud, ~$0.0045/query)
- Multi-language support
- Session management
- MCP protocol compliant
# With Ollama (local development)
export LLM_PROVIDER=ollama
export OLLAMA_SERVER_URL=http://localhost:11434
docker compose up -d
# With AWS Bedrock (production)
export LLM_PROVIDER=aws
export AWS_BEARER_TOKEN_BEDROCK=your_bedrock_api_key
export AWS_REGION=us-east-1
docker compose up -d
# Verify
curl http://localhost:3001/healthSee docs/README.md for complete documentation including configuration, API reference, troubleshooting, and deployment guide.
chatbot-host/ - Web UI and backend API
mcp-gateway/ - Routing and LLM abstraction
mcp-server/ - HR, IT, General agents
docs/ - Complete documentation
See LICENSE file