gradio-guides / app.py
yourusername's picture
:sparkles: add onnx app
189a1b1
raw history blame
No virus
294 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'],
).launch(debug=True)