gnosticdev commited on
Commit
e20292b
verified
1 Parent(s): 93a85c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -577,14 +577,12 @@ with gr.Blocks(title="馃幀 Generador de Videos IA", theme=gr.themes.Soft()) as d
577
  if __name__ == "__main__":
578
  logger.info("馃殌 Iniciando aplicaci贸n Generador de Videos IA...")
579
 
580
- # Configurar la cola con timeout extendido (par谩metros compatibles con tu versi贸n de Gradio)
581
  demo.queue(max_size=10)
582
 
583
- # Lanzar con configuraci贸n de timeout
584
  demo.launch(
585
  server_name="0.0.0.0",
586
  server_port=7860,
587
- show_api=False,
588
- enable_queue=True,
589
- max_threads=40
590
  )
 
577
  if __name__ == "__main__":
578
  logger.info("馃殌 Iniciando aplicaci贸n Generador de Videos IA...")
579
 
580
+ # Configurar la cola (versi贸n compatible)
581
  demo.queue(max_size=10)
582
 
583
+ # Lanzar aplicaci贸n (par谩metros b谩sicos compatibles)
584
  demo.launch(
585
  server_name="0.0.0.0",
586
  server_port=7860,
587
+ show_api=False
 
 
588
  )