fffiloni commited on
Commit
10e0303
1 Parent(s): 3b9fcdd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -95,7 +95,7 @@ with gr.Blocks(css=css) as demo:
95
  with gr.Column(elem_id="col-container"):
96
  text = gr.Textbox(label="Subject", info="Will generate and tell a story about {your text input}")
97
  submit_btn = gr.Button('Submit')
98
- audio = gr.Audio("The story audio told")
99
  story = gr.Textbox(label="The story text")
100
 
101
  submit_btn.click(fn=app, inputs=[text], outputs=[story, audio])
 
95
  with gr.Column(elem_id="col-container"):
96
  text = gr.Textbox(label="Subject", info="Will generate and tell a story about {your text input}")
97
  submit_btn = gr.Button('Submit')
98
+ audio = gr.Audio(label="The story audio told")
99
  story = gr.Textbox(label="The story text")
100
 
101
  submit_btn.click(fn=app, inputs=[text], outputs=[story, audio])