Gradio-Apps / app.py
ibvhim's picture
Update app.py
201cae6
raw
history blame
302 Bytes
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)