From 6136d3ac83517621006c76a22f1a793666071d69 Mon Sep 17 00:00:00 2001 From: yinpeng <2291314224@qq.com> Date: Mon, 16 Dec 2024 16:55:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=89=A7=E8=A1=8C=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E8=BE=93=E5=87=BA=E6=A0=BC=E5=BC=8F=EF=BC=8C=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E8=BE=93=E5=87=BA=E5=86=85=E5=AE=B9=E7=9A=84=E5=88=86?= =?UTF-8?q?=E6=AE=B5=E7=BB=93=E6=9E=84=E4=B8=8E=E6=A0=87=E8=AE=B0=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/chat_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/chat_service.py b/app/services/chat_service.py index cc75882..1097039 100644 --- a/app/services/chat_service.py +++ b/app/services/chat_service.py @@ -298,4 +298,4 @@ class ChatService: """格式化执行结果输出""" outcome = result_data.get("outcome", "") output = result_data.get("output", "").strip() - return f"""\n【执行结果】\n> outcome: {outcome}\n> output:\n```plaintext\n{output}\n```\n""" + return f"""\n【执行结果】\n> outcome: {outcome}\n\n【输出结果】\n```plaintext\n{output}\n```\n"""