File size: 12,580 Bytes
df237f6
6bcdb09
e96c006
e438f2d
66fd865
 
df237f6
34bea2e
 
66fd865
df237f6
6bcdb09
674face
ca49a1b
 
 
 
 
63a633d
 
 
430b690
ca49a1b
0d7cf4b
df237f6
0d7cf4b
63a633d
 
 
 
 
ca49a1b
e64f989
f45dc16
430b690
 
 
ca49a1b
33b064d
6978666
ab8363f
6978666
 
 
848919d
 
6978666
848919d
 
33a218d
6978666
ab8363f
33a218d
ab8363f
 
 
 
 
 
ca49a1b
430b690
bfa3ec5
1e6395c
 
430b690
 
 
ca49a1b
cc63789
e64f989
cc63789
e64f989
ca49a1b
91a2e1f
ca49a1b
efe17b7
430b690
efe17b7
ca49a1b
 
 
d4a78d3
ca49a1b
 
 
430b690
 
 
 
c01d2ef
430b690
 
08b14ba
430b690
 
 
 
 
 
ffa6c24
430b690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ca49a1b
e01cf86
6193768
 
 
 
47a95ac
2cfbdba
6193768
 
8e99f61
6193768
a7844e4
2cfbdba
8e99f61
a7844e4
 
e5f6885
33a218d
e5f6885
33a218d
e5f6885
2cfbdba
9f8d49e
e64f989
fba6e77
430b690
e64f989
430b690
fba6e77
e64f989
 
be11444
9d81a2d
c01d2ef
9d81a2d
e64f989
9d81a2d
4b85076
9d81a2d
4b85076
 
9d81a2d
4b85076
9d81a2d
4b85076
 
9d81a2d
4b85076
9d81a2d
4b85076
9d81a2d
63a633d
fba6e77
9d81a2d
fba6e77
 
9d81a2d
4b85076
 
d7e50c8
8711c74
 
430b690
33b064d
430b690
63a633d
8f7a4f3
33a218d
c01d2ef
0c7e093
 
 
 
dc4fdc8
0c7e093
 
 
8f7a4f3
63a633d
8f7a4f3
 
 
 
63a633d
8f7a4f3
 
 
 
 
 
 
 
 
33a218d
 
 
 
 
 
 
 
8f7a4f3
37d8ced
63a633d
82ef5f2
 
e64f989
 
 
 
 
63a633d
 
 
 
ca49a1b
63a633d
 
848919d
 
 
ca49a1b
 
4b85076
 
 
b1228c8
9918933
8f7a4f3
63a633d
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254

import os
os.system("pip uninstall -y spaces")
os.system('pip install spaces==0.12.0')
os.system("pip uninstall -y gradio")
os.system("pip uninstall -y inflect")
os.system("pip uninstall -y pydantic")
# os.system("pip uninstall -y typer")
# os.system('pip install typer==0.4.0')
os.system('pip install pydantic==1.8.2')

import streamlit as st
import re
import json
from dotenv import load_dotenv
import numpy as np
import pandas as pd
from haystack.schema import Document
from haystack.document_stores import PineconeDocumentStore
from haystack.nodes import EmbeddingRetriever
# from huggingface_hub import login, HfApi, hf_hub_download, InferenceClient
import openai




# for local st testing, may need to run source ~/.zshrc to point to env vars

# Get HF token (used for llama2)
# hf_token = os.environ["HF_TOKEN"]
# login(token=hf_token, add_to_git_credential=True)

# Get openai API key
openai.api_key = os.environ["OPENAI_API_KEY"]

# Get openai API key
pinecone_key = os.environ["PINECONE_API_KEY"]

#___________________________________________________________________________________________________________

@st.cache_resource 
def get_document_store():
    doc_file_name="cpv_full_southern_africa"
    document_store = PineconeDocumentStore(api_key=pinecone_key,
                                       environment="asia-southeast1-gcp-free",
                                       index=doc_file_name)
    return document_store


# Get (or initialize and get) the document store
document_store = get_document_store()

# Instantiate retriever
retriever = EmbeddingRetriever(
  document_store=document_store,
  embedding_model="sentence-transformers/multi-qa-mpnet-base-dot-v1",
  model_format="sentence_transformers",
  progress_bar=False,
)

prompt_template="Answer the given question using the following documents. \
Formulate your answer in the style of an academic report. \
Provide example quotes and citations using extracted text from the documents. \
Use facts and numbers from the documents in your answer. \
ALWAYS include references for information used from documents at the end of each applicable sentence using the format: '[ref. #]', where '[ref. #]' is included in the text provided at the start of each document (demarcated by the pattern '- &&& [ref. #] document_name &&&:')'. \
Do not include page numbers in the references. \
If no relevant information to answer the question is present in the documents, just say you don't have enough information to answer."


# Create a list of options for the dropdown
# model_options = ['chatGPT','Llama2']

# Create a list of options for the dropdown
country_options = ['All Countries','Angola','Botswana','Lesotho','Kenya','Malawi','Mozambique','Namibia','Rwanda','South Africa','Zambia','Zimbabwe']

# Create a list of options for the dropdown
vulnerability_options = ['All Categories','Agricultural communities', 'Children', 'Coastal communities', 'Ethnic, racial or other minorities', 'Fishery communities', 'Informal sector workers', 'Members of indigenous and local communities', 'Migrants and displaced persons', 'Older persons', 'Persons living in poverty', 'Persons with disabilities', 'Persons with pre-existing health conditions', 'Residents of drought-prone regions', 'Rural populations', 'Sexual minorities (LGBTQI+)', 'Urban populations', 'Women and other genders','Other']

# List of examples
examples = [
    "-",
    "What specific initiatives are presented in the context to address the needs of groups such as women and children to the effects climate change?",
    "In addition to gender, children, and youth, is there any mention of other groups facing disproportional impacts from climate change due to their geographic location, socio-economic status, age, gender, health, and occupation?"
]


def get_docs(input_query, country = [], vulnerability_cat = []):
  if not country:
    country = "All Countries"
  if not vulnerability_cat:
    if country == "All Countries":
      filters = None
    else:
      filters = {'country': {'$in': country}}
  else:
    if country == "All Countries":
          filters = {'vulnerability_cat': {'$in': vulnerability_cat}}
    else:
      filters = {'country': {'$in': country},'vulnerability_cat': {'$in': vulnerability_cat}}
  docs = retriever.retrieve(query=input_query, filters = filters, top_k = 10)
  # Break out the key fields and convert to pandas for filtering
  docs = [{**x.meta,"score":x.score,"content":x.content} for x in docs]
  df_docs = pd.DataFrame(docs)
  # Get ourselves an index setup from which to base the source reference number from (in the prompt and matching afterwards)
  df_docs = df_docs.reset_index()
  df_docs['ref_id'] = df_docs.index + 1 # start the index at 1
  # Convert back to Document format
  ls_dict = []
  # Iterate over df and add relevant fields to the dict object
  for index, row in df_docs.iterrows():
      # Create a Document object for each row
      doc = Document(
          row['content'],
          meta={'country': row['country'],'document': row['document'], 'page': row['page'], 'file_name': row['file_name'], 'ref_id': row['ref_id'], 'vulnerability_cat': row['vulnerability_cat'], 'score': row['score']}
      )

      # Append the Document object to the documents list
      ls_dict.append(doc)
  return ls_dict

def get_refs(docs, res):
  '''
  Parse response for engineered reference ids (refer to prompt template)
  Extract documents using reference ids
  '''
  res = res.lower()  # Convert to lowercase for matching
  # This pattern should be returned by gpt3.5
  # pattern = r'ref\. (\d+)\]\.'
  pattern = r'ref\. (\d+)'
  ref_ids = [int(match) for match in re.findall(pattern, res)]
  # extract
  result_str = ""  # Initialize an empty string to store the result
  for i in range(len(docs)):
      doc = docs[i].to_dict()
      ref_id = doc['meta']['ref_id']
      if ref_id in ref_ids:
        if doc['meta']['document'] == "Supplementary":
            result_str += "**Ref. " + str(ref_id) + " [" + doc['meta']['country'] + " " + doc['meta']['document'] + ':' + doc['meta']['file_name'] + ' p' + str(doc['meta']['page']) + '; vulnerabilities: ' + doc['meta']['vulnerability_cat'] + "]:** " + "*'" + doc['content'] + "'*<br> <br>" # Add <br> for a line break
        else:
            result_str += "**Ref. " + str(ref_id) + " [" + doc['meta']['country'] + " " + doc['meta']['document'] + ' p' + str(doc['meta']['page']) + '; vulnerabilities: ' + doc['meta']['vulnerability_cat'] + "]:** " + "*'" + doc['content'] + "'*<br> <br>" # Add <br> for a line break
  
  return result_str

# define a special function for putting the prompt together (as we can't use haystack)
def get_prompt(docs, input_query):
  base_prompt=prompt_template
  # Add the meta data for references
  context = ' - '.join(['&&& [ref. '+str(d.meta['ref_id'])+'] '+d.meta['document']+' &&&: '+d.content for d in docs])
  prompt = base_prompt+"; Context: "+context+"; Question: "+input_query+"; Answer:"
  return(prompt)

def run_query(input_text, country, model_sel):
    # first call the retriever function using selected filters
    docs = get_docs(input_text, country=country,vulnerability_cat=vulnerabilities_cat)
    # model selector (not currently being used)
    if model_sel == "chatGPT":
        # instantiate ChatCompletion as a generator object (stream is set to True)
        response = openai.ChatCompletion.create(model="gpt-3.5-turbo", messages=[{"role": "user", "content": get_prompt(docs, input_text)}], stream=True)
        # iterate through the streamed output
        report = []
        for chunk in response:
            # extract the object containing the text (totally different structure when streaming)
            chunk_message = chunk['choices'][0]['delta']
            # test to make sure there is text in the object (some don't have)
            if 'content' in chunk_message:
                report.append(chunk_message.content) # extract the message
                # add the latest text and merge it with all previous
                result = "".join(report).strip()
                res_box.success(result) # output to response text box

        references = get_refs(docs, result) # extract references from the generated text
    # Llama2 selection (was running on HF)
    # else:
    #     res = client.text_generation(get_prompt(docs, query=input_query), max_new_tokens=4000, temperature=0.01, model=model)
    #     output = res
    #     references = get_refs(docs, res)
    
    st.markdown("----")
    st.markdown('**REFERENCES:**')
    st.markdown('References are based on text automatically extracted from climate policy documents. These extracts may contain non-legible characters or disjointed text as an artifact of the extraction procedure')
    st.markdown(references, unsafe_allow_html=True)


#___________________________________________________________________________________________________________

# Sidebar (filters)
with st.sidebar:
    country = st.sidebar.multiselect('Filter by country:', country_options)
    vulnerabilities_cat = st.sidebar.multiselect('Filter by vulnerabilities category:', vulnerability_options)
    with st.expander("ℹ️ - About filters", expanded=False):
        st.markdown(
            """
            * *These selections will filter the data matched against your query*
            * *For a comparative analysis of multiple countries or vulnerability categories, select the items you require or select **'All Countries'** or **'All Categories'***
            * *Be careful in using the vulnerabilities category filter, as many of the categories are not well represented in the documents. Therefore, this will severly limit the data available for analysis*
            """
        )

# Main window title
with st.container():
        st.markdown("<h2 style='text-align: center;'> Climate Policy Documents: Vulnerabilities Analysis Q&A </h2>", unsafe_allow_html=True)
        st.write(' ')

# Main window instructions
with st.expander("ℹ️ - About this app", expanded=False):
    st.write(
        """
        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). The document store is limited to 10 Southern African countries (Angola, Botswana, Eswatini, Lesotho, Malawi, Mozambique, Namibia, South Africa, Zambia, Zimbabwe), as well as Kenya and Rwanda. 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.
        
        **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.*
        """)
    # Display the text passages as radio buttons
    selected_example = st.radio("Example questions", examples)
    st.write(
    """
    You can request comparative analyses between countries by filtering by country, and using more advanced prompts. For example:
    
    *Provide a comparative analysis between Angola and Kenya with regard to specific initiatives presented in the context to address the needs of groups such women and children to the effects climate change.*

    Make sure your filters match the countries you have specified for the analysis!
    """)


# Dropdown selectbox: model (currently not used)
# model_sel = st.selectbox('Select an LLM:', model_options)
model_sel = "chatGPT"

#----Model Select logic-------
if model_sel == "chatGPT":
    model_name = "gpt-3.5-turbo"

# else:
#     model = "meta-llama/Llama-2-70b-chat-hf"
#     # Instantiate the inference client
#     client = InferenceClient()

# get prompt from user or example prompt
if selected_example == "-": #hyphen used as a work around (st won't allow null selection)
    text = st.text_area('Enter your question in the text box below using natural language or select an example from above:')
else:
    text = st.text_area('Enter your question in the text box below using natural language or select an example from above:', value=selected_example)

if st.button('Submit'):
    st.markdown("----")
    st.markdown('**RESPONSE:**')
    res_box = st.empty()
    run_query(text, country=country, model_sel=model_sel)