Some checks are pending
🚀 LLM Fusion MCP - CI/CD Pipeline / 🔍 Code Quality & Testing (3.10) (push) Waiting to run
🚀 LLM Fusion MCP - CI/CD Pipeline / 🔍 Code Quality & Testing (3.11) (push) Waiting to run
🚀 LLM Fusion MCP - CI/CD Pipeline / 🔍 Code Quality & Testing (3.12) (push) Waiting to run
🚀 LLM Fusion MCP - CI/CD Pipeline / 🛡️ Security Scanning (push) Blocked by required conditions
🚀 LLM Fusion MCP - CI/CD Pipeline / 🐳 Docker Build & Push (push) Blocked by required conditions
🚀 LLM Fusion MCP - CI/CD Pipeline / 🎉 Create Release (push) Blocked by required conditions
🚀 LLM Fusion MCP - CI/CD Pipeline / 📢 Deployment Notification (push) Blocked by required conditions
- Unified access to 4 major LLM providers (Gemini, OpenAI, Anthropic, Grok) - Real-time streaming support across all providers - Multimodal capabilities (text, images, audio) - Intelligent document processing with smart chunking - Production-ready with health monitoring and error handling - Full OpenAI ecosystem integration (Assistants, DALL-E, Whisper) - Vector embeddings and semantic similarity - Session-based API key management - Built with FastMCP and modern Python tooling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
847 B
YAML
43 lines
847 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
llm-fusion-mcp:
|
|
build: .
|
|
container_name: llm-fusion-mcp
|
|
restart: unless-stopped
|
|
environment:
|
|
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
|
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
|
|
- XAI_API_KEY=${XAI_API_KEY}
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
- ./data:/app/data
|
|
stdin_open: true
|
|
tty: true
|
|
networks:
|
|
- llm-fusion
|
|
|
|
# Optional: Add monitoring service
|
|
healthcheck:
|
|
image: alpine:latest
|
|
depends_on:
|
|
- llm-fusion-mcp
|
|
command: >
|
|
sh -c "
|
|
echo 'LLM Fusion MCP Health Check Service'
|
|
while true; do
|
|
echo '[$(date)] Checking server health...'
|
|
sleep 30
|
|
done
|
|
"
|
|
networks:
|
|
- llm-fusion
|
|
|
|
networks:
|
|
llm-fusion:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
logs:
|
|
data: |