Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
| 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:** {
|
|
|
|
|
|
|
|
|
|
| 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}")
|