Pijush2023 commited on
Commit
37e1112
·
verified ·
1 Parent(s): b5aca1d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -12
app.py CHANGED
@@ -303,15 +303,8 @@ def generate_answer(message, choice):
303
 
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):
@@ -332,10 +325,6 @@ def bot(history, choice):
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))
 
303
 
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):
 
325
  audio_path = audio_future.result()
326
  yield history, audio_path
327
 
 
 
 
 
328
 
329
  def add_message(history, message):
330
  history.append((message, None))