Spaces:
Paused
Paused
Update app.py
Browse files
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
|