From 5450cbc3f1e232c6ddf8ce8c3d3745eecd1d6ba3 Mon Sep 17 00:00:00 2001 From: yinpeng <2291314224@qq.com> Date: Mon, 16 Dec 2024 16:50:41 +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=E6=A0=87?= =?UTF-8?q?=E8=AE=B0=E6=A0=B7=E5=BC=8F=E4=B8=8E=E4=BB=A3=E7=A0=81=E5=9D=97?= =?UTF-8?q?=E8=AF=AD=E8=A8=80=E5=A3=B0=E6=98=8E?= 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 0a1a475..cc75882 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【执行结果】\noutcome: {outcome}\noutput:\n```{output}```\n""" + return f"""\n【执行结果】\n> outcome: {outcome}\n> output:\n```plaintext\n{output}\n```\n"""