seawolf2357 commited on
Commit
876a16e
ยท
1 Parent(s): 4b1e413

initial commit

Browse files
Files changed (1) hide show
  1. app.py +7 -1
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 URL ๋ถ„์„", "PDF ๋ถ„์„"])
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()