Update app.py
Browse files
app.py
CHANGED
@@ -95,14 +95,14 @@ examples=[["I'm planning a vacation to Japan. Can you suggest a one-week itinera
|
|
95 |
]
|
96 |
|
97 |
css="""
|
98 |
-
#
|
99 |
max-width: 640px;
|
100 |
}
|
101 |
"""
|
102 |
|
103 |
gr.ChatInterface(
|
104 |
fn=generate,
|
105 |
-
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True,
|
106 |
#additional_inputs=additional_inputs,
|
107 |
title="Chat with Santa",
|
108 |
#examples=examples,
|
|
|
95 |
]
|
96 |
|
97 |
css="""
|
98 |
+
#gradio-container{
|
99 |
max-width: 640px;
|
100 |
}
|
101 |
"""
|
102 |
|
103 |
gr.ChatInterface(
|
104 |
fn=generate,
|
105 |
+
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, bubble_full_width=False, elem_id="chat-interface"),
|
106 |
#additional_inputs=additional_inputs,
|
107 |
title="Chat with Santa",
|
108 |
#examples=examples,
|