alexkueck commited on
Commit
cf6615d
·
1 Parent(s): bc6921d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -438,13 +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
- buffer = io.BytesIO()
442
- image.save(buffer, format='PNG')
443
- desiredObject = buffer.getbuffer()
444
 
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:
 
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
 
445
  print("image:.................")
446
+
447
+ history[-1][1] = image.show() #file.name,
448
  print("history zeichnen......................")
449
  print(history)
450
  if shared_state.interrupted: