Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -441,7 +441,7 @@ def invoke (prompt, file, history, rag_option, model_option, openai_api_key, k=3
|
|
441 |
#buffer = io.BytesIO()
|
442 |
#image.save(buffer, format='PNG')
|
443 |
#desiredObject = buffer.getbuffer()
|
444 |
-
b = BytesIO()
|
445 |
image.save(b, format='PNG')
|
446 |
|
447 |
history[-1][1] = "<img src='data:image/png;base64,{0}'/>".format(b64encode(b.getvalue()).decode('utf-8')) #file.name,
|
|
|
441 |
#buffer = io.BytesIO()
|
442 |
#image.save(buffer, format='PNG')
|
443 |
#desiredObject = buffer.getbuffer()
|
444 |
+
b = io.BytesIO()
|
445 |
image.save(b, format='PNG')
|
446 |
|
447 |
history[-1][1] = "<img src='data:image/png;base64,{0}'/>".format(b64encode(b.getvalue()).decode('utf-8')) #file.name,
|