Spaces:
Build error
Build error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
import onnx_guide.app
|
4 |
+
import chatbot.app
|
5 |
+
import pictionary.app
|
6 |
+
|
7 |
+
gr.TabbedInterface(
|
8 |
+
interface_list=[
|
9 |
+
chatbot.app.interface,
|
10 |
+
pictionary.app.interface,
|
11 |
+
onnx_guide.app.interface,
|
12 |
+
],
|
13 |
+
tab_names=['Chatbot', 'Pictionary', 'onnx'],
|
14 |
+
).launch(debug=True)
|