File size: 232 Bytes
41f6a26
 
 
5a6723b
41f6a26
 
 
201cae6
41f6a26
 
0d28add
41f6a26
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

import onnx_guide.app
import Chatbot.app

gr.TabbedInterface(
    interface_list=[
        Chatbot.app.interface,
        onnx_guide.app.interface,
    ],
    tab_names=['Chatbot', 'Onnx'],
).launch(debug=True)