gradio-guides / app.py
yourusername's picture
:bug: add onnx tab name
112cc16
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)