Spaces:
Build error
Build error
File size: 302 Bytes
41f6a26 201cae6 41f6a26 201cae6 41f6a26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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)
|