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