Pijush2023 commited on
Commit
9fc71c4
·
verified ·
1 Parent(s): 1f512c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -324,7 +324,10 @@ def bot(history, choice):
324
 
325
  audio_path = audio_future.result()
326
  yield history, audio_path
327
-
 
 
 
328
  def add_message(history, message):
329
  history.append((message, None))
330
  return history, gr.Textbox(value="", interactive=True, placeholder="Enter message or upload file...", show_label=False)
 
324
 
325
  audio_path = audio_future.result()
326
  yield history, audio_path
327
+
328
+ map_html = generate_map(addresses)
329
+ yield history, map_html
330
+
331
  def add_message(history, message):
332
  history.append((message, None))
333
  return history, gr.Textbox(value="", interactive=True, placeholder="Enter message or upload file...", show_label=False)