Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -229,6 +229,16 @@ def gradio_worker(
|
|
229 |
],
|
230 |
inputs=[audio_path, msg],
|
231 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
|
233 |
with gr.Column(scale=2):
|
234 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
|
|
229 |
],
|
230 |
inputs=[audio_path, msg],
|
231 |
)
|
232 |
+
with gr.Tab('Point Cloud') as point_tab:
|
233 |
+
gr.Markdown('Coming soon🤗')
|
234 |
+
with gr.Tab('IMU') as imu_tab:
|
235 |
+
gr.Markdown('Coming soon🤗')
|
236 |
+
with gr.Tab('fMRI') as fmri_tab:
|
237 |
+
gr.Markdown('Coming soon🤗')
|
238 |
+
with gr.Tab('Depth Map') as depth_tab:
|
239 |
+
gr.Markdown('Coming soon🤗')
|
240 |
+
with gr.Tab('Normal Map') as normal_tab:
|
241 |
+
gr.Markdown('Coming soon🤗')
|
242 |
|
243 |
with gr.Column(scale=2):
|
244 |
chatbot = gr.Chatbot(elem_id="chatbot")
|