leavoigt commited on
Commit
bdd822b
·
verified ·
1 Parent(s): aa59007

update disclaimer

Browse files
Files changed (1) hide show
  1. app.py +27 -2
app.py CHANGED
@@ -33,8 +33,16 @@ with st.sidebar:
33
  with st.container():
34
  st.markdown("<h2 style='text-align: center;'> Climate Vulnerability Analysis </h2>", unsafe_allow_html=True)
35
  st.write(' ')
 
 
 
 
 
 
36
 
37
  with st.expander("ℹ️ - About this app", expanded=False):
 
 
38
  st.write(
39
  """
40
  The Climate Vulnerability App is an open-source\
@@ -56,10 +64,27 @@ with st.expander("ℹ️ - About this app", expanded=False):
56
  In this step the document is broken into smaller paragraphs \
57
  (based on word/sentence count).
58
  - Step 2: The paragraphs are then fed to the **Vulnerability Classifier** which detects if
59
- the paragraph contains any or multiple references to vulnerable groups.
 
60
  - Step 3: The identified references are then summarized using a LLM chosen by the user. \
61
  """)
62
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  st.write("")
64
 
65
  # Define the apps used
 
33
  with st.container():
34
  st.markdown("<h2 style='text-align: center;'> Climate Vulnerability Analysis </h2>", unsafe_allow_html=True)
35
  st.write(' ')
36
+ st.write("""The **Climate Vulnerability App** is an **AI-based tool** to get a quick, high-level overview of the extent to which different marginalised groups are
37
+ represented in climate policies. Upload a document, and the app uses AI to **identify references to groups vulnerable to climate change** and **summarizes key mentions**.
38
+ Please note that the app is designed to support rapid screening and provide a quick overview over of potentially relevant information.
39
+ Information may not always be complete and should not replace an in-depth human analysis.""")
40
+
41
+
42
 
43
  with st.expander("ℹ️ - About this app", expanded=False):
44
+
45
+ st.subheader("About this app")
46
  st.write(
47
  """
48
  The Climate Vulnerability App is an open-source\
 
64
  In this step the document is broken into smaller paragraphs \
65
  (based on word/sentence count).
66
  - Step 2: The paragraphs are then fed to the **Vulnerability Classifier** which detects if
67
+ the paragraph contains any or multiple references to vulnerable groups and the **Target Classifier** which
68
+ checks whether the reference is general or includes a target to be reached / concrete action formulated.
69
  - Step 3: The identified references are then summarized using a LLM chosen by the user. \
70
  """)
71
+
72
+ st.subheader("Disclaimer")
73
+
74
+ st.write("""This app is intended for specific use of retrieving information on groups in vulnerable situations of documents (e.g. climate documents)
75
+ and retrieving an overview of the most relevant points. For any use beyond this scope we have no liability to a response provided by this app.
76
+ We have implemented measures to ensure the technical robustness and security of our AI system,
77
+ minimizing unexpected behaviour, however we do not guarantee the full reliability, or completeness of any information and disclaim any liability
78
+ or responsibility for actions taken based on its responses.
79
+ The app may occasionally provide inaccurate or inappropriate responses, and it is important to exercise judgment and critical thinking when interpreting
80
+ its output. The use of AI within this application is transparent. When interacting with the AI, users are informed that they are engaging with an AI system
81
+ The app responses should not be considered professional or authoritative advice and are generated based on patterns in the data it has been trained on.
82
+ The app's responses do not reflect the opinions or policies of our organization or its affiliates.
83
+ By using this app, you agree to these terms and acknowledge that you are solely responsible for any reliance on or actions taken based on its responses.
84
+ User can read more about the technical information about the tool in Readme of this tool.
85
+ This is just a prototype and being tested and worked upon, so its not perfect and may sometimes give irrelevant answers.
86
+ If you are not satisfied with the answer, please ask a more specific question or report your feedback to help us improve the system.""")
87
+
88
  st.write("")
89
 
90
  # Define the apps used