OuroborosM commited on
Commit
212e58f
·
1 Parent(s): 5edac6d

Update app.py

Browse files

Try new type for chat history

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
- test_msg = ["Test upload"]
 
333
  chat_history.append(test_msg)
334
  return chat_history
335
 
 
329
  file_path = files
330
  print(file_path)
331
  # UpdateDb()
332
+ print(chat_history)
333
+ test_msg = ["Test upload", "Ongoing"]
334
  chat_history.append(test_msg)
335
  return chat_history
336