mtyrrell commited on
Commit
b6c4f7e
1 Parent(s): e64f989

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -144,12 +144,12 @@ retriever = EmbeddingRetriever(
144
 
145
 
146
  # Guiding text
147
- st.title('Climate Policy Documents: Vulnerabilities Analysis Q&A (test)')
148
- st.markdown('This tool seeks to provide an interface for quering national climate policy documents (NDCs, LTS etc.). The current version is powered by chatGPT (3.5) and limited to 10 Southern African countries (Angola, Botswana, Eswatini, Lesotho, Malawi, Mozambique, Namibia, South Africa, Zambia, Zimbabwe) and Kenya. The intended use case is to allow users to interact with the documents and obtain valuable insights on various vulnerable groups affected by climate change.')
149
  st.markdown('**DISCLAIMER:** *This prototype tool based on LLMs (Language Models) is provided "as is" for experimental and exploratory purposes only, and should not be used for critical or production applications. Users are advised that the tool may contain errors, bugs, or limitations and should be used with caution and awareness of potential risks, and the developers make no warranties or guarantees regarding its performance, reliability, or suitability for any specific purpose.*')
150
 
151
  # Dropdown selectbox: model
152
- model_sel = st.selectbox('Select a model:', model_options)
153
 
154
  #----Model Select logic-------
155
  if model_sel == "chatGPT":
 
144
 
145
 
146
  # Guiding text
147
+ st.title('Climate Policy Documents: Vulnerabilities Analysis Q&A')
148
+ st.markdown('This tool seeks to provide an interface for quering national climate policy documents (NDCs, LTS etc.). The current version is powered by chatGPT (3.5) and Llama2. The document store is limited to 10 Southern African countries (Angola, Botswana, Eswatini, Lesotho, Malawi, Mozambique, Namibia, South Africa, Zambia, Zimbabwe) and Kenya. The intended use case is to allow users to interact with the documents and obtain valuable insights on various vulnerable groups affected by climate change.')
149
  st.markdown('**DISCLAIMER:** *This prototype tool based on LLMs (Language Models) is provided "as is" for experimental and exploratory purposes only, and should not be used for critical or production applications. Users are advised that the tool may contain errors, bugs, or limitations and should be used with caution and awareness of potential risks, and the developers make no warranties or guarantees regarding its performance, reliability, or suitability for any specific purpose.*')
150
 
151
  # Dropdown selectbox: model
152
+ model_sel = st.selectbox('Select an LLM:', model_options)
153
 
154
  #----Model Select logic-------
155
  if model_sel == "chatGPT":