Spaces:
Sleeping
Sleeping
Rob Learsch commited on
Commit ·
89778f0
1
Parent(s): fafa9ed
Update app.py
Browse files
app.py
CHANGED
|
@@ -218,6 +218,7 @@ with gr.Blocks() as demo:
|
|
| 218 |
clear_btn=None,
|
| 219 |
)
|
| 220 |
with gr.Column(scale=3):
|
|
|
|
| 221 |
gr.ChatInterface(
|
| 222 |
chat_with_musician,
|
| 223 |
additional_inputs=[Artist_dropdown],
|
|
@@ -225,7 +226,7 @@ with gr.Blocks() as demo:
|
|
| 225 |
title="Lyrical Language Model",
|
| 226 |
description="Enter a message, receive vibes",
|
| 227 |
fill_height=False,
|
| 228 |
-
|
| 229 |
)
|
| 230 |
|
| 231 |
# Launch the chatbot
|
|
|
|
| 218 |
clear_btn=None,
|
| 219 |
)
|
| 220 |
with gr.Column(scale=3):
|
| 221 |
+
chatbot = gr.Chatbot(height=750,)
|
| 222 |
gr.ChatInterface(
|
| 223 |
chat_with_musician,
|
| 224 |
additional_inputs=[Artist_dropdown],
|
|
|
|
| 226 |
title="Lyrical Language Model",
|
| 227 |
description="Enter a message, receive vibes",
|
| 228 |
fill_height=False,
|
| 229 |
+
chatbot=chatbot,
|
| 230 |
)
|
| 231 |
|
| 232 |
# Launch the chatbot
|