From f58bced86ead0f4e7474b8134a396362fc46f666 Mon Sep 17 00:00:00 2001 From: AnotiaWang Date: Tue, 25 Feb 2025 15:58:37 +0800 Subject: [PATCH] chore(prompt): improve layout instructions for Chinese --- lib/prompt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/prompt.ts b/lib/prompt.ts index 07feaec..0c384ae 100644 --- a/lib/prompt.ts +++ b/lib/prompt.ts @@ -24,7 +24,7 @@ export const languagePrompt = (language: string) => { if (language === '中文') { languagePrompt += - ' Add appropriate spaces between Chinese and Latin characters / numbers to improve readability.' + ' Add appropriate spaces between Chinese characters and Latin characters/numbers (e.g., "使用Vue组件" -> "使用 Vue 组件", "深度为3" -> "深度为 3"), but do not add spaces between Chinese characters themselves.' } return languagePrompt }