diff --git a/gradio_ui/app.py b/gradio_ui/app.py
index 5777ca4..4d7ca2f 100644
--- a/gradio_ui/app.py
+++ b/gradio_ui/app.py
@@ -123,14 +123,17 @@ def process_input(user_input, state, vision_agent_state):
for content in message["content"]:
# convert image_url to gradio image format
if content["type"] == "image_url":
- gradio_chatbox_content += f''
+ gradio_chatbox_content += f'
'
# convert text to gradio text format
elif content["type"] == "text":
# agent response is json format and must contains reasoning
if is_json_format(content["text"]):
content_json = json.loads(content["text"])
- gradio_chatbox_content += f'
{json.dumps(content_json, indent=4)} {json.dumps(content_json, indent=4, ensure_ascii=False)}