Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update streamlit_app.py
Browse files- streamlit_app.py +20 -11
streamlit_app.py
CHANGED
|
@@ -644,23 +644,32 @@ st.markdown("""
|
|
| 644 |
</div>
|
| 645 |
""", unsafe_allow_html=True)
|
| 646 |
|
|
|
|
| 647 |
TOOL_DESCRIPTIONS = {
|
| 648 |
-
"
|
| 649 |
"name": "Bills Explorer",
|
| 650 |
-
"description": "
|
| 651 |
-
"icon": "📜",
|
| 652 |
},
|
| 653 |
-
"
|
| 654 |
-
"name": "
|
| 655 |
-
"description": "
|
| 656 |
-
"icon": "⚖️",
|
| 657 |
},
|
| 658 |
-
# ➕ Add this:
|
| 659 |
"state_status_viz": {
|
| 660 |
-
"name": "State Status
|
| 661 |
-
"description": "
|
| 662 |
-
"icon": "📊",
|
| 663 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 664 |
}
|
| 665 |
|
| 666 |
|
|
|
|
| 644 |
</div>
|
| 645 |
""", unsafe_allow_html=True)
|
| 646 |
|
| 647 |
+
# Tool descriptions
|
| 648 |
TOOL_DESCRIPTIONS = {
|
| 649 |
+
"bills_table": {
|
| 650 |
"name": "Bills Explorer",
|
| 651 |
+
"description": "Navigate and filter AI governance legislation with powerful search tools. View details on bill numbers, titles, status, scope, and last action dates in an easy-to-read table format. Export your filtered results as CSV for further analysis."
|
|
|
|
| 652 |
},
|
| 653 |
+
"bills_map": {
|
| 654 |
+
"name": "Geospatial Insights",
|
| 655 |
+
"description": "Visualize the geographic distribution of AI governance bills across states with an interactive map. Circle size represents bill volume, helping you identify legislative hotspots and regional trends at a glance."
|
|
|
|
| 656 |
},
|
|
|
|
| 657 |
"state_status_viz": {
|
| 658 |
+
"name": "State & Status Analysis",
|
| 659 |
+
"description": "Interactive visualizations showing the distribution of bills across states and their current legislative status. Identify which states are most active and track bill progression through the legislative process."
|
|
|
|
| 660 |
},
|
| 661 |
+
"category_viz": {
|
| 662 |
+
"name": "Category Analysis",
|
| 663 |
+
"description": "Explore how AI governance bills are distributed across different regulatory categories. Understand the focus areas of legislation and identify emerging trends in AI regulation."
|
| 664 |
+
},
|
| 665 |
+
"temporal_viz": {
|
| 666 |
+
"name": "Temporal Analysis",
|
| 667 |
+
"description": "Track the evolution of AI governance legislation over time. Visualize trends, identify peak activity periods, and understand how legislative focus has shifted across different time periods."
|
| 668 |
+
},
|
| 669 |
+
"ai_toolkit": {
|
| 670 |
+
"name": "AI Analysis Toolkit",
|
| 671 |
+
"description": "Comprehensive AI-powered analysis suite for legislative research. Choose from multiple analysis types: Q&A for specific bill insights, comparative analysis across multiple bills, executive summary generation, and EU AI Act comparisons."
|
| 672 |
+
}
|
| 673 |
}
|
| 674 |
|
| 675 |
|