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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -14
app.py CHANGED
@@ -95,26 +95,23 @@ def draw_boxes(image_path, response):
95
  def process_input(text=None, file=None, task_history=None):
96
  if task_history is None:
97
  task_history = []
98
- image_buffer = None
99
  if file is not None:
100
- image_buffer = save_image(file)
101
- if image_buffer is None:
102
  return [("bot", "Error: Uploaded file is not a recognizable image.")], task_history
103
 
104
- response = chat_with_model(image=image_buffer, text_query=text, history=task_history)
105
  task_history.append((text, response))
106
 
107
- if "<box>" in response:
108
- if image_path:
109
- image_with_boxes = draw_boxes(image_path, response)
110
- image_with_boxes_path = image_path.replace(".jpg", "_boxed.jpg")
111
- image_with_boxes.save(image_with_boxes_path)
112
- return [("bot", response), "image", image_with_boxes_path], task_history
113
- else:
114
- return [("bot", response), "text", None], task_history
115
  else:
116
- clean_response = re.sub(r'<ref>(.*?)</ref>(?:<box>.*?</box>)*(?:<quad>.*?</quad>)*', r'\1', response).strip()
117
- return [("bot", clean_response)], task_history
118
 
119
  with gr.Blocks() as demo:
120
  gr.Markdown("""
 
95
  def process_input(text=None, file=None, task_history=None):
96
  if task_history is None:
97
  task_history = []
98
+ image_path = None
99
  if file is not None:
100
+ image_path = save_image(file)
101
+ if image_path is None:
102
  return [("bot", "Error: Uploaded file is not a recognizable image.")], task_history
103
 
104
+ response = chat_with_model(image_path=image_path, text_query=text, history=task_history)
105
  task_history.append((text, response))
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
115
 
116
  with gr.Blocks() as demo:
117
  gr.Markdown("""