mateoluksenberg commited on
Commit
49ad315
·
verified ·
1 Parent(s): f73715c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -280,9 +280,11 @@ def simple_chat(message: dict, temperature: float = 0.8, max_length: int = 4096,
280
  conversation = []
281
 
282
  if "file" in message and message["file"]:
283
- file_contents = message["file"]
284
- # Aquí debes asegurarte de que `mode_load` pueda manejar `file_contents` como bytes
285
- choice, contents = mode_load(io.BytesIO(file_contents))
 
 
286
  if choice == "image":
287
  conversation.append({"role": "user", "image": contents, "content": message["text"]})
288
  elif choice == "doc":
 
280
  conversation = []
281
 
282
  if "file" in message and message["file"]:
283
+ # Lee el contenido del archivo como bytes
284
+ file_contents = io.BytesIO(message["file"]).read()
285
+ # Convierte los bytes a una cadena si `mode_load` espera texto
286
+ file_contents_str = file_contents.decode('utf-8', errors='ignore')
287
+ choice, contents = mode_load(file_contents_str)
288
  if choice == "image":
289
  conversation.append({"role": "user", "image": contents, "content": message["text"]})
290
  elif choice == "doc":