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