Update app2.py
Browse files
app2.py
CHANGED
@@ -2112,7 +2112,7 @@ with st.sidebar:
|
|
2112 |
|
2113 |
feature = st.selectbox(
|
2114 |
"Select a feature",
|
2115 |
-
["Legal Chatbot", "Document Analysis", "Case Precedent Finder", "Legal Cost Estimator", "Contract Analysis", "Case Trend Visualizer", "Case Information Retrieval", "Automated Legal Brief Generation", "Find the Lawyers"]
|
2116 |
)
|
2117 |
if feature == "Legal Chatbot":
|
2118 |
st.subheader("Legal Chatbot")
|
@@ -2282,7 +2282,17 @@ elif feature == "Automated Legal Brief Generation":
|
|
2282 |
|
2283 |
elif feature == "Find the Lawyers":
|
2284 |
lawyer_finder_ui()
|
|
|
|
|
2285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2286 |
st.markdown("---")
|
2287 |
st.markdown(
|
2288 |
"""
|
|
|
2112 |
|
2113 |
feature = st.selectbox(
|
2114 |
"Select a feature",
|
2115 |
+
["Legal Chatbot", "Document Analysis", "Case Precedent Finder", "Legal Cost Estimator", "Contract Analysis", "Case Trend Visualizer", "Case Information Retrieval", "Automated Legal Brief Generation", "Find the Lawyers", "Find the Lawyers", "Policy Analysis & Impact", "Legal Consultant", "Contract Drafting Assistant", "Predictive Case Analysis"]
|
2116 |
)
|
2117 |
if feature == "Legal Chatbot":
|
2118 |
st.subheader("Legal Chatbot")
|
|
|
2282 |
|
2283 |
elif feature == "Find the Lawyers":
|
2284 |
lawyer_finder_ui()
|
2285 |
+
elif feature == "Policy Analysis & Impact":
|
2286 |
+
policy_analysis_ui()
|
2287 |
|
2288 |
+
elif feature == "Legal Consultant":
|
2289 |
+
legal_consultant_ui()
|
2290 |
+
|
2291 |
+
elif feature == "Contract Drafting Assistant":
|
2292 |
+
contract_drafting_ui()
|
2293 |
+
|
2294 |
+
elif feature == "Predictive Case Analysis":
|
2295 |
+
predictive_analysis_ui()
|
2296 |
st.markdown("---")
|
2297 |
st.markdown(
|
2298 |
"""
|