Pijush2023 commited on
Commit
b42a16f
·
verified ·
1 Parent(s): 02f40d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -2
app.py CHANGED
@@ -304,7 +304,14 @@ def generate_answer(message, choice):
304
  # Extract addresses for mapping regardless of the choice
305
  addresses = extract_addresses(response['output'])
306
  return response['output'], addresses
307
-
 
 
 
 
 
 
 
308
 
309
 
310
  def bot(history, choice):
@@ -324,7 +331,11 @@ def bot(history, choice):
324
 
325
  audio_path = audio_future.result()
326
  yield history, audio_path
327
-
 
 
 
 
328
 
329
  def add_message(history, message):
330
  history.append((message, None))
 
304
  # Extract addresses for mapping regardless of the choice
305
  addresses = extract_addresses(response['output'])
306
  return response['output'], addresses
307
+
308
+ #change -1
309
+ # If the choice is Conversational, strip out the addresses from the response
310
+ if choice == "Conversational":
311
+ for address in addresses:
312
+ response['output'] = response['output'].replace(address, "")
313
+
314
+ return response['output'], addresses
315
 
316
 
317
  def bot(history, choice):
 
331
 
332
  audio_path = audio_future.result()
333
  yield history, audio_path
334
+
335
+ #change 2
336
+ # Generate the map with the extracted addresses
337
+ map_html = generate_map(addresses)
338
+ yield history, map_html
339
 
340
  def add_message(history, message):
341
  history.append((message, None))