gradio-guides / app.py
yourusername's picture
:sparkles: add a couple apps
0804f04
raw
history blame
238 Bytes
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)