Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
284 |
-
|
285 |
-
|
|
|
|
|
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":
|