Bmo411 commited on
Commit
2b83dc2
verified
1 Parent(s): d857d8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -82,11 +82,11 @@ def text_to_audio(text):
82
  # Crear interfaz en Gradio
83
  interface = gr.Interface(
84
  fn=text_to_audio,
85
- inputs=gr.Textbox(lines=2, placeholder="Escribe algun numero del 0-9, en letra"),
86
  outputs=gr.Audio(label="Audio generado"),
87
  title="Demo de TTS con Tacotron2 + Generador",
88
  description="Convierte texto en audio usando Tacotron2 + modelo Generator entrenado.",
89
- examples=[["nine"], ["cero"]]
90
  )
91
 
92
  # Lanzar aplicaci贸n
 
82
  # Crear interfaz en Gradio
83
  interface = gr.Interface(
84
  fn=text_to_audio,
85
+ inputs=gr.Textbox(lines=2, placeholder="Escribe algo (ej. 'Hello world')"),
86
  outputs=gr.Audio(label="Audio generado"),
87
  title="Demo de TTS con Tacotron2 + Generador",
88
  description="Convierte texto en audio usando Tacotron2 + modelo Generator entrenado.",
89
+ examples=[["Hello"], ["Hi there"]]
90
  )
91
 
92
  # Lanzar aplicaci贸n