Spaces:
Paused
Paused
Update app.py
Browse files
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])
|