Skip to content

Commit

Permalink
update doc (#3136)
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu authored Nov 12, 2024
1 parent f68ae33 commit 2423a09
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 30 deletions.
21 changes: 11 additions & 10 deletions docSite/content/zh-cn/docs/development/upgrading/4813.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@ weight: 811
6. 新增 - 部分对话错误提醒增加翻译。
7. 新增 - 对话输入框支持拖拽文件上传,可直接拖文件到输入框中。
8. 新增 - 对话日志,来源可显示分享链接/API具体名称
9. 优化 - 合并多个 system 提示词成 1 个,避免部分模型不支持多个 system 提示词。
10. 优化 - 知识库上传文件,优化报错提示。
11. 优化 - 全文检索语句,减少一轮子查询。
12. 优化 - 修改 findLast 为 [...array].reverse().find,适配旧版浏览器。
13. 优化 - Markdown 组件自动空格,避免分割 url 中的中文。
14. 优化 - 工作流上下文拆分,性能优化。
15. 优化 - 语音播报,不支持 mediaSource 的浏览器可等待完全生成语音后输出。
16. 修复 - Dockerfile pnpm install 支持代理。
17. 修复 - BI 图表生成无法写入文件。同时优化其解析,支持数字类型数组。
18. 修复 - 分享链接首次加载时,标题显示不正确。
9. 新增 - 分享链接支持配置是否展示实时运行状态。
10. 优化 - 合并多个 system 提示词成 1 个,避免部分模型不支持多个 system 提示词。
11. 优化 - 知识库上传文件,优化报错提示。
12. 优化 - 全文检索语句,减少一轮子查询。
13. 优化 - 修改 findLast 为 [...array].reverse().find,适配旧版浏览器。
14. 优化 - Markdown 组件自动空格,避免分割 url 中的中文。
15. 优化 - 工作流上下文拆分,性能优化。
16. 优化 - 语音播报,不支持 mediaSource 的浏览器可等待完全生成语音后输出。
17. 修复 - Dockerfile pnpm install 支持代理。
18. 修复 - BI 图表生成无法写入文件。同时优化其解析,支持数字类型数组。
19. 修复 - 分享链接首次加载时,标题显示不正确。
2 changes: 1 addition & 1 deletion projects/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app",
"version": "4.8.12",
"version": "4.8.13",
"private": false,
"scripts": {
"dev": "next dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ const TTSSelect = dynamic(() => import('@/components/core/app/TTSSelect'));
const QGSwitch = dynamic(() => import('@/components/core/app/QGSwitch'));
const WhisperConfig = dynamic(() => import('@/components/core/app/WhisperConfig'));
const InputGuideConfig = dynamic(() => import('@/components/core/app/InputGuideConfig'));
const ScheduledTriggerConfig = dynamic(
() => import('@/components/core/app/ScheduledTriggerConfig')
);
const WelcomeTextConfig = dynamic(() => import('@/components/core/app/WelcomeTextConfig'));
const FileSelectConfig = dynamic(() => import('@/components/core/app/FileSelect'));

Expand Down Expand Up @@ -455,22 +452,6 @@ const EditForm = ({
}}
/>
</Box>

{/* timer trigger */}
<Box {...BoxStyles} borderBottom={'none'}>
<ScheduledTriggerConfig
value={appForm.chatConfig.scheduledTriggerConfig}
onChange={(e) => {
setAppForm((state) => ({
...state,
chatConfig: {
...state.chatConfig,
scheduledTriggerConfig: e
}
}));
}}
/>
</Box>
</Box>

{isOpenDatasetSelect && (
Expand Down

0 comments on commit 2423a09

Please sign in to comment.