OuroborosM commited on
Commit
b09e27c
·
1 Parent(s): d3f79d4

correct input for chatbot

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -329,7 +329,8 @@ def func_upload_file(files, chat_history):
329
  file_path = files
330
  print(file_path)
331
  # UpdateDb()
332
- chat_history.append("Test File Upload")
 
333
  return chat_history
334
 
335
  with gr.Blocks() as demo:
 
329
  file_path = files
330
  print(file_path)
331
  # UpdateDb()
332
+ test_msg = ["How are you?", "I love you", "I'm very hungry"]
333
+ chat_history.append(test_msg)
334
  return chat_history
335
 
336
  with gr.Blocks() as demo: