Spaces:
Runtime error
Runtime error
Cascade Bot
commited on
Commit
·
83ea6e1
1
Parent(s):
3a45eb3
fix: remove unsupported Chatbot parameters
Browse files- Remove layout, likeable, avatar_images, and rtl parameters
- Keep core functionality intact
app.py
CHANGED
@@ -284,13 +284,9 @@ class ChatInterface:
|
|
284 |
show_copy_button=True,
|
285 |
render_markdown=True,
|
286 |
container=True,
|
287 |
-
layout="bubble",
|
288 |
-
likeable=True,
|
289 |
-
avatar_images=["👤", "🤖"],
|
290 |
elem_classes=["chat-window"],
|
291 |
type="messages",
|
292 |
show_label=False,
|
293 |
-
rtl=False,
|
294 |
)
|
295 |
|
296 |
with gr.Row():
|
|
|
284 |
show_copy_button=True,
|
285 |
render_markdown=True,
|
286 |
container=True,
|
|
|
|
|
|
|
287 |
elem_classes=["chat-window"],
|
288 |
type="messages",
|
289 |
show_label=False,
|
|
|
290 |
)
|
291 |
|
292 |
with gr.Row():
|