Update app.py
Browse files
app.py
CHANGED
|
@@ -120,8 +120,8 @@ with gr.Blocks(css="""
|
|
| 120 |
chatbot = gr.Chatbot(type="messages", value=[{"role": "assistant", "content": translations["en"]["welcome"]}])
|
| 121 |
|
| 122 |
state = gr.State([]) # Store conversation history
|
| 123 |
-
|
| 124 |
-
|
| 125 |
btn1 = gr.Button("Trip recommendations / Recommendations de Voyage", elem_classes=["gradio-button"])
|
| 126 |
btn2 = gr.Button("Send me somewhere! / Envoyez-moi quelques part!", elem_classes=["gradio-button"])
|
| 127 |
btn3 = gr.Button("1 week planned vacations / Voyage d'une semaine planifié", elem_classes=["gradio-button"])
|
|
|
|
| 120 |
chatbot = gr.Chatbot(type="messages", value=[{"role": "assistant", "content": translations["en"]["welcome"]}])
|
| 121 |
|
| 122 |
state = gr.State([]) # Store conversation history
|
| 123 |
+
|
| 124 |
+
with gr.Row():
|
| 125 |
btn1 = gr.Button("Trip recommendations / Recommendations de Voyage", elem_classes=["gradio-button"])
|
| 126 |
btn2 = gr.Button("Send me somewhere! / Envoyez-moi quelques part!", elem_classes=["gradio-button"])
|
| 127 |
btn3 = gr.Button("1 week planned vacations / Voyage d'une semaine planifié", elem_classes=["gradio-button"])
|