Albator2570 commited on
Commit
5201886
·
verified ·
1 Parent(s): c35f379

Upload .bat launcher

Browse files
Files changed (1) hide show
  1. interface/LANCER_PPT_MASTER.bat +31 -0
interface/LANCER_PPT_MASTER.bat ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ title PPT Master — Interface Gradio
3
+ echo.
4
+ echo ============================================================
5
+ echo PPT Master — Generateur de Presentations IA
6
+ echo ============================================================
7
+ echo.
8
+ echo Pre-requis:
9
+ echo - ComfyUI doit tourner en arriere-plan (port 8188)
10
+ echo - Le fichier .env doit etre configure
11
+ echo.
12
+ echo Lancement de l'interface web...
13
+ echo L'interface s'ouvrira dans ton navigateur a http://127.0.0.1:7860
14
+ echo.
15
+ echo Pour arreter: ferme cette fenetre ou appuie sur Ctrl+C
16
+ echo.
17
+
18
+ cd /d "%~dp0"
19
+
20
+ REM Vérifie que gradio est installé
21
+ python -c "import gradio" 2>nul
22
+ if errorlevel 1 (
23
+ echo.
24
+ echo [!] Gradio n'est pas installe. Installation en cours...
25
+ pip install gradio
26
+ echo.
27
+ )
28
+
29
+ python app_gradio.py
30
+
31
+ pause