From a851a2854f644e288b98bc731a02e45f88c3e9e5 Mon Sep 17 00:00:00 2001 From: iven Date: Wed, 1 Apr 2026 23:21:06 +0800 Subject: [PATCH] feat(desktop): update quick action prompts for education/healthcare/design industries Tailor first-conversation prompts to the three target user groups: - Education: AI tool comparison, digital transformation research - Healthcare: administrative optimization proposal - Design/Shantou: toy industry export trend analysis Co-Authored-By: Claude Opus 4.6 --- desktop/src/components/FirstConversationPrompt.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/desktop/src/components/FirstConversationPrompt.tsx b/desktop/src/components/FirstConversationPrompt.tsx index 9ee681a..ff383db 100644 --- a/desktop/src/components/FirstConversationPrompt.tsx +++ b/desktop/src/components/FirstConversationPrompt.tsx @@ -32,13 +32,13 @@ const QUICK_ACTIONS = [ { key: 'learn', label: '学习', icon: GraduationCap, color: 'text-indigo-500' }, ]; -// Pre-filled prompts for each quick action +// Pre-filled prompts for each quick action — tailored for target industries const QUICK_ACTION_PROMPTS: Record = { surprise: '给我一个小惊喜吧!来点创意的', - write: '帮我写一篇文章,主题你来定', - research: '帮我做一个深度研究分析', - collect: '帮我收集整理一些有用的信息', - learn: '我想学点新东西,教我一些有趣的知识', + write: '帮我写一份关于"远程医疗行政管理优化方案"的提案大纲', + research: '帮我深度研究"2026年教育数字化转型趋势",包括政策、技术和实践三个维度', + collect: '帮我采集 5 个主流 AI 教育工具的产品信息,对比功能和价格', + learn: '我想了解汕头玩具产业 2026 年出口趋势,能帮我分析一下吗?', }; interface FirstConversationPromptProps {