From 2324440aaaad5503d0a79a3cdd9e12b23e976cc4 Mon Sep 17 00:00:00 2001 From: zhaoyingbo Date: Wed, 5 Feb 2025 10:29:11 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E7=94=9F=E6=88=90=E9=80=BB=E8=BE=91=EF=BC=8C?= =?UTF-8?q?=E7=AE=80=E5=8C=96=E5=86=85=E5=AE=B9=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- controller/reportAgent/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/controller/reportAgent/index.ts b/controller/reportAgent/index.ts index 79ed1f6..dd44497 100644 --- a/controller/reportAgent/index.ts +++ b/controller/reportAgent/index.ts @@ -115,7 +115,7 @@ const genReportCard = ( ? `**小提示🔍** 您可以在[这里](${sheetLink})查看往期简报哦!` : "" - const content = ` + const fullContent = ` 感谢您使用小煎蛋简报🍳!以下是为您总结的简报内容: **网站地址🌟** @@ -128,6 +128,8 @@ ${llmRes} ${sheetLinkMd} ` + const content = sheetLink ? fullContent : llmRes + return cardGender.genCard("markdownSuccessCard", { content, })