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