Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -100,6 +100,7 @@ def qa_infer_interface(property_choice, query_question):
|
|
| 100 |
qa_infer = QAInfer()
|
| 101 |
if not property_choice and user_choices:
|
| 102 |
property_choice = user_choices[0]
|
|
|
|
| 103 |
property_row = [row for row in data if row[1] == property_choice][0] # Find the row corresponding to the selected property
|
| 104 |
if not query_question:
|
| 105 |
query_question = "area"
|
|
|
|
| 100 |
qa_infer = QAInfer()
|
| 101 |
if not property_choice and user_choices:
|
| 102 |
property_choice = user_choices[0]
|
| 103 |
+
print("property_choice")
|
| 104 |
property_row = [row for row in data if row[1] == property_choice][0] # Find the row corresponding to the selected property
|
| 105 |
if not query_question:
|
| 106 |
query_question = "area"
|