mirror of
https://github.com/labring/FastGPT.git
synced 2026-02-28 01:02:28 +08:00
S3 sdk (#6215)
* refactor: fastgpt object storage & global proxy (#6155) * feat: migrate to fastgpt storage sdk * chore: rename env variable * chore: move to sdk dir * docs: object storage * CHORE * chore: storage mocks * chore: update docker-compose * fix: global proxy agent * fix: update COS proxy * refactor: use fetch instead of http.request * fix: axios request base url * fix: axios proxy request behavior * fix: bumps axios * fix: patch axios for proxy * fix: replace axios with proxied axios * fix: upload txt file encoding * clean code * fix: use "minio" for minio adapter (#6205) * fix: use minio client to delete files when using minio vendor (#6206) * doc * feat: filter citations and add response button control (#6170) * feat: filter citations and add response button control * i18n * fix * fix test * perf: chat api code * fix: workflow edge overlap and auto-align in folded loop nodes (#6204) * fix: workflow edge overlap and auto-align in folded loop nodes * sort * fix * fix edge * fix icon * perf: s3 file name * perf: admin get app api * perf: catch user error * fix: refactor useOrg hook to use debounced search key (#6180) * chore: comment minio adapter (#6207) * chore: filename with suffix random id * perf: s3 storage code * fix: encode filename when copy object --------- Co-authored-by: archer <545436317@qq.com> * fix: node card link * json * perf: chat index; * index * chat item soft delete (#6216) * chat item soft delete * temp * fix * remove code * perf: delete chat item --------- Co-authored-by: archer <545436317@qq.com> * feat: select wheather filter sensitive info when export apps (#6222) * fix some bugs (#6210) * fix v4.14.5 bugs * type * fix * fix * custom feedback * fix * code * fix * remove invalid function --------- Co-authored-by: archer <545436317@qq.com> * perf: test * fix file default local upload (#6223) * docs: improve object storage introduction (#6224) * doc --------- Co-authored-by: roy <whoeverimf5@gmail.com> Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com>
This commit is contained in:
@@ -1,18 +1,58 @@
|
||||
---
|
||||
title: 'V4.14.5(进行中)'
|
||||
title: 'V4.14.5'
|
||||
description: 'FastGPT V4.14.5 更新说明'
|
||||
---
|
||||
|
||||
## 更新指南
|
||||
|
||||
### 1. 修改存储桶环境变量
|
||||
|
||||
该版本除了支持 minio 以外,还增加支持了原生 OSS 和 COS, 所以需要修改相关环境变量修改成新的命名。
|
||||
|
||||
**新增变量**
|
||||
|
||||
```
|
||||
STORAGE_VENDOR=minio
|
||||
STORAGE_REGION=us-east-1
|
||||
STORAGE_ACCESS_KEY_ID=minioadmin
|
||||
STORAGE_SECRET_ACCESS_KEY=minioadmin
|
||||
STORAGE_PUBLIC_BUCKET=fastgpt-public
|
||||
STORAGE_PRIVATE_BUCKET=fastgpt-private
|
||||
STORAGE_EXTERNAL_ENDPOINT=http://192.168.0.2:9000 # 一个服务器和客户端均可访问到存储桶的地址,可以是固定的宿主机 IP 或者域名,注意不要填写成 127.0.0.1 或者 localhost 等本地回环地址(因为容器里无法使用)
|
||||
STORAGE_S3_ENDPOINT=http://fastgpt-minio:9000 # 协议://域名(IP):端口
|
||||
```
|
||||
|
||||
**移除旧的变量**
|
||||
|
||||
* S3_EXTERNAL_BASE_URL
|
||||
* S3_ENDPOINT
|
||||
* S3_PORT
|
||||
* S3_USE_SSL
|
||||
* S3_ACCESS_KEY
|
||||
* S3_SECRET_KEY
|
||||
* S3_PUBLIC_BUCKET
|
||||
* S3_PRIVATE_BUCKET
|
||||
|
||||
### 2. 更新镜像:
|
||||
|
||||
- 更新 FastGPT 镜像tag: v4.14.5
|
||||
- 更新 FastGPT 商业版镜像tag: v4.14.5
|
||||
- 更新 fastgpt-plugin 镜像 tag: v0.4.0
|
||||
- mcp_server 无需更新
|
||||
- Sandbox 无需更新
|
||||
- AIProxy 无需更新
|
||||
|
||||
## 🚀 新增内容
|
||||
|
||||
1. 工作流画布增加演示模式,同时优化折叠模式样式。
|
||||
1. 工作流画布增加演示模式,同时优化折叠模式样式,优化工作流线重叠问题。
|
||||
2. 工作流增加嵌套应用快速跳转按钮。
|
||||
3. 对话记录使用侧改成软删除,增加从日志管理里删除对话记录。
|
||||
4. 更新Agent/工具时,会更新其上层所有目录的更新时间,以便其会排在列表前面。
|
||||
5. 门户页支持配置单个应用运行可见度配。
|
||||
6. 导出单个知识库集合分块接口。
|
||||
7. 升级 Mongo5.x 至 5.0.32 解决CVE-2025-14847。
|
||||
3. 工作流导出支持选择过滤/不过滤敏感信息。
|
||||
4. 对话记录使用侧改成软删除,增加从日志管理里删除对话记录。
|
||||
5. 更新Agent/工具时,会更新其上层所有目录的更新时间,以便其会排在列表前面。
|
||||
6. 门户页支持配置单个应用运行可见度。
|
||||
7. 导出单个知识库集合分块接口。
|
||||
8. 升级 Mongo5.x 至 5.0.32 解决CVE-2025-14847。
|
||||
9. 邮箱配置,支持配置安全模式以及端口号。
|
||||
|
||||
## ⚙️ 优化
|
||||
|
||||
@@ -21,6 +61,10 @@ description: 'FastGPT V4.14.5 更新说明'
|
||||
3. 变量输入框禁用状态可复制。
|
||||
4. LLM 请求空响应判断,排除敏感过滤错误被误认为无响应。
|
||||
5. 完善 AI 对话和工具调用的错误提示,提供更多原始数据。
|
||||
6. 增大文件解析接口的请求大小限制为 10MB。
|
||||
7. 对话回复下方的引用列表,仅显示 AI 实际引用的知识库内容。
|
||||
8. 更新 MCP SDK 版本。
|
||||
9. Chats 表索引,减少冗余,增加条件索引。
|
||||
|
||||
## 🐛 修复
|
||||
|
||||
@@ -30,6 +74,11 @@ description: 'FastGPT V4.14.5 更新说明'
|
||||
4. chatAgent 未开启问题优化时,前端 UI 显示开启。
|
||||
5. 加载默认模型时,maxTokens 字段未赋值,导致模型最大响应值配置为空。
|
||||
6. S3 文件清理队列因网络稳定问题出现阻塞,导致删除任务不再执行。
|
||||
|
||||
7. 对话日志接口适配 mongo4.x 语法。
|
||||
8. 变量更新节点将文件 URL 字符串数组错误转换为对象数组。
|
||||
9. 多个表单输入节点共享 sessionStorage 导致默认值不显示。
|
||||
10. 代码运行节点切换语言后,AI 仍使用旧语言生成代码。
|
||||
11. 多个自定义反馈节点并发写入触发数据库写入冲突。
|
||||
12. 交互节点后续的自定义反馈节点写入失败。
|
||||
|
||||
## 插件
|
||||
|
||||
Reference in New Issue
Block a user