File size: 795 Bytes
5201886
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@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