Tonic commited on
Commit
feee422
·
1 Parent(s): c04a162

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -106,9 +106,10 @@ def process_input(text=None, file=None, task_history=None):
106
 
107
  if "<box>" in response and image_path:
108
  image_with_boxes = draw_boxes(image_path, response)
109
- image_with_boxes_path = image_path.replace(".jpg", "_boxed.jpg")
110
- image_with_boxes.save(image_with_boxes_path)
111
- return [("bot", response), "image", image_with_boxes_path], task_history
 
112
  else:
113
  cleaned_response = clean_response(response)
114
  return [("bot", cleaned_response)], task_history
 
106
 
107
  if "<box>" in response and image_path:
108
  image_with_boxes = draw_boxes(image_path, response)
109
+ buffered = BytesIO()
110
+ image_with_boxes.save(buffered, format="PNG")
111
+ img_str = buffered.getvalue()
112
+ return [("bot", response, "data:image/png;base64," + base64.b64encode(img_str).decode())], task_history
113
  else:
114
  cleaned_response = clean_response(response)
115
  return [("bot", cleaned_response)], task_history