Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -468,7 +468,7 @@ if query:
|
|
| 468 |
st.subheader("Top Matching Insights")
|
| 469 |
collected = []
|
| 470 |
|
| 471 |
-
for idx, score in sorted(res, key=lambda x: x[1], reverse=True)[:10]:
|
| 472 |
row = df2.iloc[idx]
|
| 473 |
date = row['status_date'].date()
|
| 474 |
bill_number = row['bill_number']
|
|
|
|
| 468 |
st.subheader("Top Matching Insights")
|
| 469 |
collected = []
|
| 470 |
|
| 471 |
+
for idx, score in sorted(res, key=lambda x: x[1], reverse=True)[:10]:
|
| 472 |
row = df2.iloc[idx]
|
| 473 |
date = row['status_date'].date()
|
| 474 |
bill_number = row['bill_number']
|