Initial commit: RunPod multi-modal AI orchestration stack
- 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)
This commit is contained in:
16
entrypoint.sh
Executable file
16
entrypoint.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
echo "Patching Facefusion to disable NSFW filter..."
|
||||
|
||||
# Patch content_analyser.py line 197 to always return False (content is safe)
|
||||
sed -i '197s/.*/\treturn False # Patched: NSFW filter disabled/' /facefusion/facefusion/content_analyser.py
|
||||
|
||||
# Verify the patch was applied
|
||||
if grep -q 'return False.*Patched' /facefusion/facefusion/content_analyser.py; then
|
||||
echo "NSFW filter successfully disabled"
|
||||
else
|
||||
echo "ERROR: Patch failed!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Starting Facefusion..."
|
||||
cd /facefusion && exec python -u facefusion.py run
|
||||
Reference in New Issue
Block a user