Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -452,7 +452,7 @@ def clear_textbox():
|
|
452 |
return ""
|
453 |
|
454 |
def show_map_if_details(history,choice):
|
455 |
-
|
456 |
return gr.update(visible=True), update_map_with_response(history)
|
457 |
else:
|
458 |
return gr.update(visible=False), ""
|
|
|
452 |
return ""
|
453 |
|
454 |
def show_map_if_details(history,choice):
|
455 |
+
if choice in ["Details", "Conversational"]:
|
456 |
return gr.update(visible=True), update_map_with_response(history)
|
457 |
else:
|
458 |
return gr.update(visible=False), ""
|