Update app.py
Browse files
app.py
CHANGED
@@ -208,13 +208,12 @@ def respond(message, history):
|
|
208 |
# Create the Gradio interface
|
209 |
demo = gr.ChatInterface(
|
210 |
fn=respond,
|
211 |
-
chatbot=gr.Chatbot(layout="panel"),
|
212 |
textbox=gr.MultimodalTextbox(),
|
213 |
multimodal=True,
|
214 |
concurrency_limit=200,
|
215 |
cache_examples=False,
|
216 |
-
css="""footer{display:none !important}
|
217 |
-
show_share_button:false"""
|
218 |
)
|
219 |
|
220 |
gr.Warning("Warning: On mobile, the connection can break if this tab is unfocused or the device sleeps, losing your position in queue.", visible=False)
|
|
|
208 |
# Create the Gradio interface
|
209 |
demo = gr.ChatInterface(
|
210 |
fn=respond,
|
211 |
+
chatbot=gr.Chatbot(layout="panel",show_share_button=false),
|
212 |
textbox=gr.MultimodalTextbox(),
|
213 |
multimodal=True,
|
214 |
concurrency_limit=200,
|
215 |
cache_examples=False,
|
216 |
+
css="""footer{display:none !important}"""
|
|
|
217 |
)
|
218 |
|
219 |
gr.Warning("Warning: On mobile, the connection can break if this tab is unfocused or the device sleeps, losing your position in queue.", visible=False)
|