Spaces:
Configuration error
Configuration error
Commit
ยท
876a16e
1
Parent(s):
4b1e413
initial commit
Browse files
app.py
CHANGED
@@ -20,9 +20,15 @@ stt_demo = gr.Interface.load(
|
|
20 |
title=None,
|
21 |
inputs="mic",
|
22 |
description="Let me try to guess what you're saying!",
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
)
|
24 |
|
25 |
-
demo = gr.TabbedInterface([tts_demo, stt_demo], ["Article
|
26 |
|
27 |
if __name__ == "__main__":
|
28 |
demo.launch()
|
|
|
20 |
title=None,
|
21 |
inputs="mic",
|
22 |
description="Let me try to guess what you're saying!",
|
23 |
+
|
24 |
+
vts_demo = gr.Interface.load(
|
25 |
+
"spaces/seawolf2357/vts-whisper",
|
26 |
+
title=None,
|
27 |
+
inputs="mic",
|
28 |
+
description="Let me try to guess what you're saying!",
|
29 |
)
|
30 |
|
31 |
+
demo = gr.TabbedInterface([tts_demo, stt_demo, vts_demo], ["Article+URL: ๋ถ์", "PDF: ๋ถ์", "๋ณด์ด์ค+URL: ๋ถ์"])
|
32 |
|
33 |
if __name__ == "__main__":
|
34 |
demo.launch()
|