Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -86,11 +86,11 @@ sampletext = gr.HTML("""
|
|
86 |
</audio>
|
87 |
""")
|
88 |
micinput = gr.Audio(sources=['microphone'], type="filepath", format="wav")
|
89 |
-
|
90 |
tab3 = gr.Interface(
|
91 |
fn=text2speech,
|
92 |
inputs=[textbox, sampletext, micinput],
|
93 |
-
outputs=[
|
94 |
)
|
95 |
|
96 |
radio4 = gr.Radio(["black-forest-labs/FLUX.1-schnell"], value="black-forest-labs/FLUX.1-schnell", label="Select", info="text to image")
|
|
|
86 |
</audio>
|
87 |
""")
|
88 |
micinput = gr.Audio(sources=['microphone'], type="filepath", format="wav")
|
89 |
+
outaudio = gr.Audio(show_download_button=True, show_share_button=True)
|
90 |
tab3 = gr.Interface(
|
91 |
fn=text2speech,
|
92 |
inputs=[textbox, sampletext, micinput],
|
93 |
+
outputs=[outaudio],
|
94 |
)
|
95 |
|
96 |
radio4 = gr.Radio(["black-forest-labs/FLUX.1-schnell"], value="black-forest-labs/FLUX.1-schnell", label="Select", info="text to image")
|