Gradio-Apps / app.py
ibvhim's picture
Update app.py
b12e07e
raw
history blame
318 Bytes
import gradio as gr
import onnx_guide.app
import Chatbot.app
import Voicechat_Hindi.app
gr.TabbedInterface(
interface_list=[
Chatbot.app.interface,
onnx_guide.app.interface,
Voicechat_Hindi.app.interface
],
tab_names=['Chatbot' ,'Onnx', 'Voicechat (Hindi)'],
).launch(debug=True)