Spaces:
Paused
Paused
Update app.py
Browse files
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 |
-
|
99 |
if file is not None:
|
100 |
-
|
101 |
-
if
|
102 |
return [("bot", "Error: Uploaded file is not a recognizable image.")], task_history
|
103 |
|
104 |
-
response = chat_with_model(
|
105 |
task_history.append((text, response))
|
106 |
|
107 |
-
if "<box>" in response:
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
return [("bot", response), "image", image_with_boxes_path], task_history
|
113 |
-
else:
|
114 |
-
return [("bot", response), "text", None], task_history
|
115 |
else:
|
116 |
-
|
117 |
-
return [("bot",
|
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("""
|