Spaces:
Build error
Build error
| import gradio as gr | |
| import Chatbot.app | |
| import Image_Classification_EfficientNetLite4.app | |
| import Voicechat_Hindi.app | |
| gr.TabbedInterface( | |
| interface_list=[ | |
| Chatbot.app.interface, | |
| Image_Classification_EfficientNetLite4.app.interface, | |
| Voicechat_Hindi.app.interface | |
| ], | |
| tab_names=['Chatbot' ,'Image Classification (EfficientNet Lite4)', 'Voicechat (Hindi)'], | |
| ).launch(debug=True) | |