ibvhim commited on
Commit
41f6a26
1 Parent(s): 1f7c132

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
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)