Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ibvhim
/
Gradio-Apps
like
2
Build error
App
Files
Files
Community
fb93743
Gradio-Apps
/
app.py
ibvhim
Update app.py
5a6723b
almost 2 years ago
raw
Copy download link
history
blame
232 Bytes
import
gradio
as
gr
import
onnx_guide.app
import
Chatbot.app
gr.TabbedInterface(
interface_list=[
Chatbot.app.interface,
onnx_guide.app.interface,
],
tab_names=[
'Chatbot'
,
'Onnx'
],
).launch(debug=
True
)