mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00

* Aiproxy (#3649) * model config * feat: model config ui * perf: rename variable * feat: custom request url * perf: model buffer * perf: init model * feat: json model config * auto login * fix: ts * update packages * package * fix: dockerfile * feat: usage filter & export & dashbord (#3538) * feat: usage filter & export & dashbord * adjust ui * fix tmb scroll * fix code & selecte all * merge * perf: usages list;perf: move components (#3654) * perf: usages list * team sub plan load * perf: usage dashboard code * perf: dashboard ui * perf: move components * add default model config (#3653) * 4.8.20 test (#3656) * provider * perf: model config * model perf (#3657) * fix: model * dataset quote * perf: model config * model tag * doubao model config * perf: config model * feat: model test * fix: POST 500 error on dingtalk bot (#3655) * feat: default model (#3662) * move model config * feat: default model * fix: false triggerd org selection (#3661) * export usage csv i18n (#3660) * export usage csv i18n * fix build * feat: markdown extension (#3663) * feat: markdown extension * media cros * rerank test * default price * perf: default model * fix: cannot custom provider * fix: default model select * update bg * perf: default model selector * fix: usage export * i18n * fix: rerank * update init extension * perf: ip limit check * doubao model order * web default modle * perf: tts selector * perf: tts error * qrcode package * reload buffer (#3665) * reload buffer * reload buffer * tts selector * fix: err tip (#3666) * fix: err tip * perf: training queue * doc * fix interactive edge (#3659) * fix interactive edge * fix * comment * add gemini model * fix: chat model select * perf: supplement assistant empty response (#3669) * perf: supplement assistant empty response * check array * perf: max_token count;feat: support resoner output;fix: member scroll (#3681) * perf: supplement assistant empty response * check array * perf: max_token count * feat: support resoner output * member scroll * update provider order * i18n * fix: stream response (#3682) * perf: supplement assistant empty response * check array * fix: stream response * fix: model config cannot set to null * fix: reasoning response (#3684) * perf: supplement assistant empty response * check array * fix: reasoning response * fix: reasoning response * doc (#3685) * perf: supplement assistant empty response * check array * doc * lock * animation * update doc * update compose * doc * doc --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: a.e. <49438478+I-Info@users.noreply.github.com>
5.4 KiB
5.4 KiB
title, description, icon, draft, toc, weight
title | description | icon | draft | toc | weight |
---|---|---|---|---|---|
V4.8.11(商业版初始化) | FastGPT V4.8.11 更新说明 | upgrade | false | true | 813 |
更新指南
1. 做好数据备份
2. 修改配置文件
如需增加 openai o1 模型,可添加如下配置:
{
"model": "o1-mini",
"name": "o1-mini",
"avatar": "/imgs/model/openai.svg",
"maxContext": 125000,
"maxResponse": 65000,
"quoteMaxToken": 120000,
"maxTemperature": 1.2,
"charsPointsPrice": 0,
"censor": false,
"vision": false,
"datasetProcess": true,
"usedInClassify": true,
"usedInExtractFields": true,
"usedInToolCall": true,
"toolChoice": false,
"functionCall": false,
"customCQPrompt": "",
"customExtractPrompt": "",
"defaultSystemChatPrompt": "",
"defaultConfig": {
"temperature": 1
}
},
{
"model": "o1-preview",
"name": "o1-preview",
"avatar": "/imgs/model/openai.svg",
"maxContext": 125000,
"maxResponse": 32000,
"quoteMaxToken": 120000,
"maxTemperature": 1.2,
"charsPointsPrice": 0,
"censor": false,
"vision": false,
"datasetProcess": true,
"usedInClassify": true,
"usedInExtractFields": true,
"usedInToolCall": true,
"toolChoice": false,
"functionCall": false,
"customCQPrompt": "",
"customExtractPrompt": "",
"defaultSystemChatPrompt": "",
"defaultConfig": {
"temperature": 1
}
}
3. 修改镜像 tag 并重启
- 更新 FastGPT 镜像 tag: v4.8.11-fix
- 更新 FastGPT 商业版镜像 tag: v4.8.11
- 更新 FastGPT Sandbox 镜像 tag: v4.8.11
4. 商业版初始化
从任意终端,发起 1 个 HTTP 请求。其中 {{rootkey}} 替换成环境变量里的 rootkey
;{{host}} 替换成FastGPT 商业版域名。
curl --location --request POST 'https://{{host}}/api/admin/init/4811' \
--header 'rootkey: {{rootkey}}' \
--header 'Content-Type: application/json'
会初始化团队成员组。
V4.8.11 更新说明
- 新增 - 表单输入节点,允许用户在工作流中让用户输入一些信息。
- 新增 - 循环运行节点,可传入数组进行批量调用,目前最多支持 50 长度的数组串行执行。
- 新增 - 节点支持折叠。
- 新增 - 简易模式支持新的历史记录模式,可记录本地变更记录。
- 新增 - 聊天记录滚动加载,不再只加载 30 条。
- 新增 - 工作流增加触摸板优先模式,可以通过工作流右下角按键进行切换。
- 新增 - 沙盒增加字符串转 base64 全局方法(全局变量 strToBase64)。
- 新增 - 支持 Openai o1 模型,需增加模型的
defaultConfig
配置,覆盖temperature
、max_tokens
和stream
配置,o1 不支持 stream 模式。 - 新增 - AI 对话节点知识库引用,支持配置 role=system 和 role=user,已配置的过自定义提示词的节点将会保持 user 模式,其余用户将转成 system 模式。
- 新增 - 插件支持上传系统文件。
- 新增 - 插件输出,支持指定字段作为工具响应。
- 新增 - 支持工作流嵌套子应用时,可以设置
非流模式
,同时简易模式也可以选择工作流作为插件了,简易模式调用子应用时,都将强制使用非流模式。 - 新增 - 调试模式下,子应用调用,支持返回详细运行数据。
- 新增 - 保留所有模式下子应用嵌套调用的日志。
- 新增 - 对话日志显示成员。
- 新增 - 商业版支持后台配置 AI 生成文案提示。
- 新增 - Jest 单测框架。
- 新增 - 工具调用参数节点,可以配合工具调用完全自由声明参数。
- 新增 - BI 图表插件。
- 新增 - Surya OCR 识别模块示例。
- 新增 - 工作流右键新增注释。
- 商业版新增 - 团队成员组。
- 优化 - 工作流嵌套层级限制 20 层,避免因编排不合理导致的无限死循环。
- 优化 - 工作流 handler 性能优化。
- 优化 - 工作流快捷键,避免调试测试时也会触发复制和回退。
- 优化 - 工作流复制时,名字去掉多余“#”。
- 优化 - 流输出,切换浏览器 Tab 后仍可以继续输出。
- 优化 - 完善外部文件知识库相关 API 。
- 优化 - 修改 config.json 的地址。
- 优化 - 正确处理//开头的超链接。
- 优化 - 工作流 Textarea 滚轮可以正常滚动而不是缩放。
- 优化 - 去除部分输入框前后空格。
- 优化 - 工作流返回时,跳转到上一次记忆的 Tab 。
- 优化 - 工作流画布禁止触摸板缩放浏览器。
- 优化 - 工作流部分节点会自动选择用户问题作为初始值。
- 优化 - Prompt Editor 支持动态增高。
- 优化 - 自动补全工具描述。
- 优化 - 文档说明 configuration.md 。
- 优化 - IOS safari 浏览器语音输入不准确。
- 修复 - 知识库选择权限问题。
- 修复 - 空 chatId 发起对话,首轮携带用户选择时会异常。
- 修复 - createDataset 接口,intro 未赋值。
- 修复 - 对话框渲染性能问题。
- 修复 - Rerank 文档地址。
- 修复 - Stream 模式下使用 toolChoice,toolCall 的function 和type 可能为 null 。
- 修复 - 站点同步自定义分割符未同步。
- 修复 - 工具调用历史记录存储问题。
- 修复 - 对话页面可能无限重定向。
- 修复 - 全局变量在工具调用中未持久传递。