File tree Expand file tree Collapse file tree 3 files changed +12
-30
lines changed
docSite/content/zh-cn/docs/development/upgrading
src/pages/app/detail/components/SimpleApp Expand file tree Collapse file tree 3 files changed +12
-30
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,14 @@ weight: 811
31
31
6 . 新增 - 部分对话错误提醒增加翻译。
32
32
7 . 新增 - 对话输入框支持拖拽文件上传,可直接拖文件到输入框中。
33
33
8 . 新增 - 对话日志,来源可显示分享链接/API具体名称
34
- 9 . 优化 - 合并多个 system 提示词成 1 个,避免部分模型不支持多个 system 提示词。
35
- 10 . 优化 - 知识库上传文件,优化报错提示。
36
- 11 . 优化 - 全文检索语句,减少一轮子查询。
37
- 12 . 优化 - 修改 findLast 为 [ ...array] .reverse().find,适配旧版浏览器。
38
- 13 . 优化 - Markdown 组件自动空格,避免分割 url 中的中文。
39
- 14 . 优化 - 工作流上下文拆分,性能优化。
40
- 15 . 优化 - 语音播报,不支持 mediaSource 的浏览器可等待完全生成语音后输出。
41
- 16 . 修复 - Dockerfile pnpm install 支持代理。
42
- 17 . 修复 - BI 图表生成无法写入文件。同时优化其解析,支持数字类型数组。
43
- 18 . 修复 - 分享链接首次加载时,标题显示不正确。
34
+ 9 . 新增 - 分享链接支持配置是否展示实时运行状态。
35
+ 10 . 优化 - 合并多个 system 提示词成 1 个,避免部分模型不支持多个 system 提示词。
36
+ 11 . 优化 - 知识库上传文件,优化报错提示。
37
+ 12 . 优化 - 全文检索语句,减少一轮子查询。
38
+ 13 . 优化 - 修改 findLast 为 [ ...array] .reverse().find,适配旧版浏览器。
39
+ 14 . 优化 - Markdown 组件自动空格,避免分割 url 中的中文。
40
+ 15 . 优化 - 工作流上下文拆分,性能优化。
41
+ 16 . 优化 - 语音播报,不支持 mediaSource 的浏览器可等待完全生成语音后输出。
42
+ 17 . 修复 - Dockerfile pnpm install 支持代理。
43
+ 18 . 修复 - BI 图表生成无法写入文件。同时优化其解析,支持数字类型数组。
44
+ 19 . 修复 - 分享链接首次加载时,标题显示不正确。
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " app" ,
3
- "version" : " 4.8.12 " ,
3
+ "version" : " 4.8.13 " ,
4
4
"private" : false ,
5
5
"scripts" : {
6
6
"dev" : " next dev" ,
Original file line number Diff line number Diff line change @@ -43,9 +43,6 @@ const TTSSelect = dynamic(() => import('@/components/core/app/TTSSelect'));
43
43
const QGSwitch = dynamic ( ( ) => import ( '@/components/core/app/QGSwitch' ) ) ;
44
44
const WhisperConfig = dynamic ( ( ) => import ( '@/components/core/app/WhisperConfig' ) ) ;
45
45
const InputGuideConfig = dynamic ( ( ) => import ( '@/components/core/app/InputGuideConfig' ) ) ;
46
- const ScheduledTriggerConfig = dynamic (
47
- ( ) => import ( '@/components/core/app/ScheduledTriggerConfig' )
48
- ) ;
49
46
const WelcomeTextConfig = dynamic ( ( ) => import ( '@/components/core/app/WelcomeTextConfig' ) ) ;
50
47
const FileSelectConfig = dynamic ( ( ) => import ( '@/components/core/app/FileSelect' ) ) ;
51
48
@@ -455,22 +452,6 @@ const EditForm = ({
455
452
} }
456
453
/>
457
454
</ Box >
458
-
459
- { /* timer trigger */ }
460
- < Box { ...BoxStyles } borderBottom = { 'none' } >
461
- < ScheduledTriggerConfig
462
- value = { appForm . chatConfig . scheduledTriggerConfig }
463
- onChange = { ( e ) => {
464
- setAppForm ( ( state ) => ( {
465
- ...state ,
466
- chatConfig : {
467
- ...state . chatConfig ,
468
- scheduledTriggerConfig : e
469
- }
470
- } ) ) ;
471
- } }
472
- />
473
- </ Box >
474
455
</ Box >
475
456
476
457
{ isOpenDatasetSelect && (
You can’t perform that action at this time.
0 commit comments