Spaces:
Runtime error
Runtime error
srinivas-mushroom
commited on
Commit
•
c3245e0
1
Parent(s):
a598e29
base
Browse files
app.py
CHANGED
@@ -27,7 +27,9 @@ stt_demo = gr.Interface.load(
|
|
27 |
description="Let me try to guess what you're saying!",
|
28 |
)
|
29 |
|
30 |
-
|
|
|
|
|
31 |
|
32 |
if __name__ == "__main__":
|
33 |
demo.launch()
|
|
|
27 |
description="Let me try to guess what you're saying!",
|
28 |
)
|
29 |
|
30 |
+
with gr.Blocks() as demo:
|
31 |
+
gr.Markdown("Welcome to Mushrooom Solutions")
|
32 |
+
gr.TabbedInterface([vision_demo, tts_demo, stt_demo], ["Image Classification", "Text-to-speech", "Speech-to-text"])
|
33 |
|
34 |
if __name__ == "__main__":
|
35 |
demo.launch()
|