- Multi-modal AI infrastructure for RunPod RTX 4090 - Automatic model orchestration (text, image, music) - Text: vLLM + Qwen 2.5 7B Instruct - Image: Flux.1 Schnell via OpenEDAI - Music: MusicGen Medium via AudioCraft - Cost-optimized sequential loading on single GPU - Template preparation scripts for rapid deployment - Comprehensive documentation (README, DEPLOYMENT, TEMPLATE)
77 lines
602 B
Plaintext
77 lines
602 B
Plaintext
# Environment variables
|
|
.env
|
|
.env.local
|
|
*.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
*.out
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Model cache
|
|
huggingface_cache/
|
|
flux/models/
|
|
musicgen/models/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
tmp/
|
|
temp/
|
|
|
|
# SSH keys
|
|
*.pem
|
|
*.key
|
|
id_rsa*
|
|
id_ed25519*
|
|
known_hosts
|
|
|
|
# Archives
|
|
*.tar.gz
|
|
*.zip
|
|
*.rar
|
|
|
|
# Backups
|
|
*.bak
|
|
*.backup
|