tjl8 commited on
Commit
346457d
·
verified ·
1 Parent(s): 4d47856

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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]: # top 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']