Update app2.py
Browse files
app2.py
CHANGED
@@ -1529,7 +1529,7 @@ def generate_legal_brief(case_info):
|
|
1529 |
|
1530 |
def automated_legal_brief_generation_ui():
|
1531 |
st.title("Automated Legal Brief Generation")
|
1532 |
-
st.expander("How to use"):
|
1533 |
st.write('''Enter the case details and based on that it will generate a legal brief and also provide you with the proper analysis of the case and how you can win this case and where you have to be carefull''')
|
1534 |
if 'legal_brief' not in st.session_state:
|
1535 |
st.session_state.legal_brief = ""
|
@@ -1947,7 +1947,7 @@ elif feature == "Document Analysis":
|
|
1947 |
|
1948 |
elif feature == "Case Precedent Finder":
|
1949 |
st.subheader("Case Precedent Finder")
|
1950 |
-
st.expander("How to use Case Precedent Finder"):
|
1951 |
st.write('''keep the prompt as short as possible''')
|
1952 |
if 'precedents' not in st.session_state:
|
1953 |
st.session_state.precedents = None
|
|
|
1529 |
|
1530 |
def automated_legal_brief_generation_ui():
|
1531 |
st.title("Automated Legal Brief Generation")
|
1532 |
+
with st.expander("How to use"):
|
1533 |
st.write('''Enter the case details and based on that it will generate a legal brief and also provide you with the proper analysis of the case and how you can win this case and where you have to be carefull''')
|
1534 |
if 'legal_brief' not in st.session_state:
|
1535 |
st.session_state.legal_brief = ""
|
|
|
1947 |
|
1948 |
elif feature == "Case Precedent Finder":
|
1949 |
st.subheader("Case Precedent Finder")
|
1950 |
+
with st.expander("How to use Case Precedent Finder"):
|
1951 |
st.write('''keep the prompt as short as possible''')
|
1952 |
if 'precedents' not in st.session_state:
|
1953 |
st.session_state.precedents = None
|