File size: 238 Bytes
ec08b42
 
0804f04
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

import chatbot.app
import pictionary.app

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