Update app.py
Browse files
app.py
CHANGED
@@ -430,7 +430,7 @@ def vote(data: gr.LikeData):
|
|
430 |
else:
|
431 |
print("You downvoted this response: " + data.value)
|
432 |
|
433 |
-
with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
434 |
|
435 |
chatbot = gr.Chatbot(type="messages",avatar_images=("user.jpeg", "logo.jpeg"), bubble_full_width=True) # Chatbot component to display conversation history
|
436 |
query_input = gr.MultimodalTextbox(interactive=True,
|
|
|
430 |
else:
|
431 |
print("You downvoted this response: " + data.value)
|
432 |
|
433 |
+
with gr.Blocks(theme=gr.themes.Soft(),css="footer {visibility: hidden}") as iface:
|
434 |
|
435 |
chatbot = gr.Chatbot(type="messages",avatar_images=("user.jpeg", "logo.jpeg"), bubble_full_width=True) # Chatbot component to display conversation history
|
436 |
query_input = gr.MultimodalTextbox(interactive=True,
|