tjl8 commited on
Commit
0f8745d
·
verified ·
1 Parent(s): a0b33c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -112,7 +112,10 @@ if query:
112
  date = row['status_date'].date()
113
  bill_number = row['bill_number']
114
  full_url = row['url']
115
- cat_std = row['Category & Subcategory']
 
 
 
116
  goal = row['Legislative Goal']
117
  impact = row['Policy Impact Areas']
118
  provision = row['Key Provisions']
@@ -125,7 +128,10 @@ if query:
125
  insight = clean_text(row['llama_insight'])
126
 
127
  st.markdown(f"**Date:** {date} | **Bill Number:** {bill_number} | **Score:** {score:.2f}")
128
- st.markdown(f"**Category:** {cat_std}")
 
 
 
129
  st.markdown(f"**Goal:** {goal}")
130
  st.markdown(f"**Intent:** {intent} | **Stance:** {stance}")
131
  st.markdown(f"**Policy Impacy Area:** {impact}")
 
112
  date = row['status_date'].date()
113
  bill_number = row['bill_number']
114
  full_url = row['url']
115
+ cat = row['Category & Subcategory']
116
+ cat_std = row['category_&_subcategory_standardized']
117
+ bene= row['Intended Beneficiaries']
118
+ bene_std= row['intended_beneficiaries_standardized']
119
  goal = row['Legislative Goal']
120
  impact = row['Policy Impact Areas']
121
  provision = row['Key Provisions']
 
128
  insight = clean_text(row['llama_insight'])
129
 
130
  st.markdown(f"**Date:** {date} | **Bill Number:** {bill_number} | **Score:** {score:.2f}")
131
+ st.markdown(f"**Category:** {cat}")
132
+ st.markdown(f"**Category Std:** {cat_std}")
133
+ st.markdown(f"** Intended Beneficiaries:** {bene}")
134
+ st.markdown(f"** Intended Beneficiaries STD:** {bene_std}")
135
  st.markdown(f"**Goal:** {goal}")
136
  st.markdown(f"**Intent:** {intent} | **Stance:** {stance}")
137
  st.markdown(f"**Policy Impacy Area:** {impact}")