From 1bb3978c9a25f6aa6c1a6078b05cc7d173dc434e Mon Sep 17 00:00:00 2001 From: wonder Date: Fri, 26 Jun 2026 17:07:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=E7=94=9F=E6=88=90=20Prompt=20?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E7=AB=A0=E8=8A=82=E6=A0=87=E9=A2=98=E8=87=AA?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E5=86=85=E5=AE=B9=E6=94=B9=E4=B8=BA=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E8=BE=93=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/index.html | 2 +- internal/handlers/builder.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 46224fa..4f22ce4 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -339,7 +339,7 @@ // Custom content const customContent = document.getElementById('custom-content').value.trim(); if (customContent) { - parts.push(`## 自定义内容\n\n${customContent}`); + parts.push(`## 用户输入\n\n${customContent}`); } // Tag constraints diff --git a/internal/handlers/builder.go b/internal/handlers/builder.go index 6cff577..aeed5b7 100644 --- a/internal/handlers/builder.go +++ b/internal/handlers/builder.go @@ -210,7 +210,7 @@ func AssemblePrompt(projectName string, customContent string, tagOptions []model // Custom content if customContent != "" { - parts = append(parts, fmt.Sprintf("## 自定义内容\n\n%s", customContent)) + parts = append(parts, fmt.Sprintf("## 用户输入\n\n%s", customContent)) } // Tag constraints