Fix Gradio compatibility - pin to stable 4.44.0, add chatbot type
Browse files- app.py +2 -1
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -871,7 +871,8 @@ def create_app():
|
|
| 871 |
height=500,
|
| 872 |
show_label=True,
|
| 873 |
elem_id="chatbot",
|
| 874 |
-
bubble_full_width=False
|
|
|
|
| 875 |
)
|
| 876 |
|
| 877 |
# Needs selector (hidden until stage 5)
|
|
|
|
| 871 |
height=500,
|
| 872 |
show_label=True,
|
| 873 |
elem_id="chatbot",
|
| 874 |
+
bubble_full_width=False,
|
| 875 |
+
type="tuples"
|
| 876 |
)
|
| 877 |
|
| 878 |
# Needs selector (hidden until stage 5)
|
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
gradio
|
| 2 |
anthropic>=0.18.0
|
|
|
|
| 1 |
+
gradio==4.44.0
|
| 2 |
anthropic>=0.18.0
|