feat(问翻小宝): 增强帮助搜索与会话历史

关键改动:

- 增加问翻小宝会话历史记录规则与测试

- 优化帮助搜索、兜底建议和页面交互结构

- 更新帮助截图资产和截图采集脚本

Co-Authored-By: Codex GPT-5 <codex@openai.com>
This commit is contained in:
Script Generator
2026-07-01 09:20:10 +08:00
parent 8683b341e2
commit e5ce2d221e
20 changed files with 714 additions and 81 deletions

View File

@@ -103,3 +103,14 @@ export function searchHelpArticles(
export function getFallbackHelpSuggestions(): string[] {
return FALLBACK_SUGGESTIONS;
}
export function getFallbackHelpMessage(showGenericSuggestions: boolean): string {
if (showGenericSuggestions) {
return '暂时没有找到对应的内置帮助内容。你可以换个关键词,或者从下面这些常见问题开始。';
}
return '暂时没有找到对应的内置帮助内容。你可以换个更具体的系统关键词,或继续描述你要操作的模块。';
}
export function shouldShowGenericHelpSuggestions(userQuestionCount: number): boolean {
return userQuestionCount < 2;
}