Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -2,11 +2,13 @@ import gradio as gr
|
|
2 |
|
3 |
import onnx_guide.app
|
4 |
import Chatbot.app
|
|
|
5 |
|
6 |
gr.TabbedInterface(
|
7 |
interface_list=[
|
8 |
Chatbot.app.interface,
|
9 |
onnx_guide.app.interface,
|
|
|
10 |
],
|
11 |
-
tab_names=['Chatbot', 'Onnx'],
|
12 |
).launch(debug=True)
|
|
|
2 |
|
3 |
import onnx_guide.app
|
4 |
import Chatbot.app
|
5 |
+
import Voicechat_Hindi.app
|
6 |
|
7 |
gr.TabbedInterface(
|
8 |
interface_list=[
|
9 |
Chatbot.app.interface,
|
10 |
onnx_guide.app.interface,
|
11 |
+
Voicechat_Hindi.app.interface
|
12 |
],
|
13 |
+
tab_names=['Chatbot', 'Voicechat (Hindi)' ,'Onnx'],
|
14 |
).launch(debug=True)
|