Spaces:
Build error
Build error
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) | |