Spaces:
Sleeping
Sleeping
arjunanand13
commited on
Commit
•
ce3141a
1
Parent(s):
126b60e
Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ def qa_infer_interface(property_choice, query_question):
|
|
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"
|
|
|
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"
|