@echo off title PPT Master — Interface Gradio echo. echo ============================================================ echo PPT Master — Generateur de Presentations IA echo ============================================================ echo. echo Pre-requis: echo - ComfyUI doit tourner en arriere-plan (port 8188) echo - Le fichier .env doit etre configure echo. echo Lancement de l'interface web... echo L'interface s'ouvrira dans ton navigateur a http://127.0.0.1:7860 echo. echo Pour arreter: ferme cette fenetre ou appuie sur Ctrl+C echo. cd /d "%~dp0" REM Vérifie que gradio est installé python -c "import gradio" 2>nul if errorlevel 1 ( echo. echo [!] Gradio n'est pas installe. Installation en cours... pip install gradio echo. ) python app_gradio.py pause