vladocar commited on
Commit
09094bd
1 Parent(s): 785faa9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -16,4 +16,8 @@ tts_demo = gr.Interface.load(
16
  )
17
 
18
 
19
- #################################################################
 
 
 
 
 
16
  )
17
 
18
 
19
+ #################################################################
20
+
21
+ demo = gr.TabbedInterface([tts_demo], ["Text to speech"])
22
+ if __name__ == "__main__":
23
+ demo.launch()