alexkueck commited on
Commit
143d456
1 Parent(s): 11d5cf6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -438,9 +438,13 @@ def invoke (prompt, file, history, rag_option, model_option, openai_api_key, k=3
438
  if (prompt.find('zeichnen') != -1):
439
  #Bild ausgeben
440
  image = Image.open(io.BytesIO(result))
 
 
 
 
441
  print("image:.................")
442
- print(image)
443
- history[-1][1] = {"image": image}, #file.name,
444
  print("history zeichnen......................")
445
  print(history)
446
  if shared_state.interrupted:
 
438
  if (prompt.find('zeichnen') != -1):
439
  #Bild ausgeben
440
  image = Image.open(io.BytesIO(result))
441
+ buffer = io.BytesIO()
442
+ image.save(buffer, format='PNG')
443
+ desiredObject = buffer.getbuffer()
444
+ buffer.close()
445
  print("image:.................")
446
+ print(desiredObject)
447
+ history[-1][1] = desiredObject #file.name,
448
  print("history zeichnen......................")
449
  print(history)
450
  if shared_state.interrupted: