Remove flux/musicgen standalone implementations in favor of ComfyUI: - Delete models/flux/ and models/musicgen/ directories - Remove redundant scripts (install.sh, download-models.sh, prepare-template.sh) - Update README.md to reference Ansible playbook commands - Update playbook.yml to remove flux/musicgen service definitions - Add COMFYUI_MODELS.md with comprehensive model installation guide - Update stop-all.sh to only manage orchestrator and vLLM services All model downloads and dependency management now handled via Ansible playbook tags (base, python, vllm, comfyui, comfyui-essential). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
501 B
Bash
23 lines
501 B
Bash
#!/bin/bash
|
|
#
|
|
# Stop AI Services
|
|
# Gracefully stops all running AI services
|
|
#
|
|
|
|
set -e
|
|
|
|
echo "========================================="
|
|
echo " Stopping AI Services"
|
|
echo "========================================="
|
|
echo ""
|
|
|
|
# Kill orchestrator and model processes
|
|
echo "Stopping orchestrator..."
|
|
pkill -f "orchestrator_subprocess.py" || echo "Orchestrator not running"
|
|
|
|
echo "Stopping model services..."
|
|
pkill -f "models/vllm/server.py" || echo "vLLM not running"
|
|
|
|
echo ""
|
|
echo "All services stopped"
|