mateoluksenberg commited on
Commit
4423d24
·
verified ·
1 Parent(s): 3027b6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -225,7 +225,9 @@ def simple_chat(message, temperature: float = 0.8, max_length: int = 4096, top_p
225
  conversation = []
226
 
227
  if message["file_content"]:
228
- choice, contents = mode_load(message["file_content"])
 
 
229
  if choice == "image":
230
  conversation.append({"role": "user", "image": contents, "content": message['text']})
231
  elif choice == "doc":
 
225
  conversation = []
226
 
227
  if message["file_content"]:
228
+ file_content = message["file_content"].read()
229
+ choice, contents = mode_load(file_content)
230
+ #choice, contents = mode_load(message["file_content"])
231
  if choice == "image":
232
  conversation.append({"role": "user", "image": contents, "content": message['text']})
233
  elif choice == "doc":