Pijush2023 commited on
Commit
a66cc63
·
verified ·
1 Parent(s): 1da963a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -127,6 +127,12 @@ def generate_answer(message, choice):
127
  addresses = extract_addresses(response['output'])
128
  return response['output'], addresses
129
 
 
 
 
 
 
 
130
  # def bot(history, choice):
131
  # if not history:
132
  # return history
 
127
  addresses = extract_addresses(response['output'])
128
  return response['output'], addresses
129
 
130
+
131
+ def extract_location_from_response(response):
132
+ agent = initialize_agent_with_prompt(ADDRESS_PROMPT)
133
+ address_response = agent(response)
134
+ return address_response['output']
135
+
136
  # def bot(history, choice):
137
  # if not history:
138
  # return history