File size: 302 Bytes
ec08b42
 
189a1b1
0804f04
 
 
 
 
 
 
189a1b1
0804f04
112cc16
0804f04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

import onnx_guide.app
import chatbot.app
import pictionary.app

gr.TabbedInterface(
    interface_list=[
        chatbot.app.interface,
        pictionary.app.interface,
        onnx_guide.app.interface,
    ],
    tab_names=['chatbot', 'pictionary', 'onnx'],
).launch(debug=True)