v4.14.0
labring/FastGPTv4.14.0Nov 5, 2025by c121914yu
AI Summary
A major architectural update introducing a Plugin Marketplace, migrating file uploads to S3, and adding new global variable types while removing pre-installed system tools.
Key Highlights
- Introduction of a Plugin Marketplace for unified system tool installation.
- Migration of file uploads to S3 with temporary (1-hour) preview links.
- New global variable types: Time point/range and Chat model selection.
- System tool architecture changes requiring manual installation.
Breaking Changes
- Pre-installed system tools removed from the `fastgpt-plugin` image; users must install them manually.
- Custom tool categories removed; replaced with unified tagging system.
- Old custom tool packages (js) will become invalid and require reinstallation.
New Features
- Plugin Market
- S3 file uploads
- Global variable types (Time/Model)
- Plugin input password type
- Markdown Base64 regex performance
- Member name normalization
Full Release Notes
## 更新指南
### 1. 更新镜像:
- 更新 FastGPT 镜像tag: v4.14.0
- 更新 FastGPT 商业版镜像tag: v4.14.0
- 更新 fastgpt-plugin 镜像 tag: v0.3.0
- mcp_server 无需更新
- Sandbox 无需更新
- AIProxy 无需更新
### 2. 执行升级脚本
仅需使用过自定义系统工具的商业版用户操作。
从任意终端,发起 1 个 HTTP 请求。其中 `{{rootkey}}` 替换成环境变量里的 `rootkey`;`{{host}}` 替换成**FastGPT 域名**。
```bash
curl --location --request POST 'https://{{host}}/api/admin/initv4140' \
--header 'rootkey: {{rootkey}}' \
--header 'Content-Type: application/json'
```
会将原系统工具迁移到最新数据表中。
### 3. 安装系统插件至系统
* 原先手动安装的 js 插件包将会失效,需重新打包安装。
* 目前插件里仅包含工具,后续将增加触发器,文档解析器,数据分块策略,索引增强策略等。
* 系统安装完插件后,对于多租户的系统,团队管理员可以在插件库中激活对应工具,从而在应用中使用。对于开源版,root 团队会默认激活所有系统工具。
从 V4.14.0 版本开始,fastgpt-plugin 镜像仅提供运行环境,不再预装系统插件,所有 FastGPT 系统需手动安装系统插件。可以通过公开的 FastGPT Marketplace 进行在线安装,或下载 .pkg 文件进行安装。
除了安装外,还可对工具进行排序、默认安装、标签管理等。
<img width="4094" height="2008" alt="image" src="https://github.com/user-attachments/assets/2bd27a95-78c7-4b95-9d5e-53dd1061528f" />
## 🚀 新增内容
1. 增加插件市场,同时移除自定义工具分类,仅支持自定义标签。本期支持系统工具,可以从 FastGPT Marketplace 统一安装系统工具。后续将支持更多插件类型:工作流触发器,数据源解析方式,数据分块,索引增强策略等。 @newfish-cmyk @FinleyGe @c121914yu
2. 对话框上传文件移动存储至 S3,并且不会自动过期,完全跟随对话记录删除。安全性更高,签发预览连接仅 1 小时生效,而不是长期。 @xqvvu
3. 全局变量支持时间点/时间范围/对话模型选择类型。 @fishwww-ww
4. 插件输入支持密码类型。 @c121914yu
## ⚙️ 优化
1. 匹配 Markdown 中 Base64 图片正则性能。 @c121914yu
2. 团队成员接受邀请后,默认成员名改为成员账户名。 @FinleyGe
## 🐛 修复
1. Prompt 编辑器存在特殊语法时候,无法解析正确内容。
3. Claude 工具调用,如果下标从 1 开始会导致参数异常。
4. S3 删除头像,如果 key 为空时,会抛错,导致流程阻塞。
5. 工作流前置IO 变更时,依赖未及时刷新。
6. 导出对话日志,缺少反馈记录。
7. 工作流欢迎语输入框输入时,光标会偏移到最后一位。
8. 存在交互节点和连续批量执行时,会导致工作流运行逻辑错误。
9. 工作流 Redo 操作后,编辑记录无法再继续推送快照。
10. HTTP 自定义输入丢失。
## What's Changed
* fix path by @c121914yu in https://github.com/labring/FastGPT/pull/5797
* fix: 修复Plugin代理服务在处理通过nginx转发部署的Plugin服务时,req.headers中的host会导致返回404. by @shikaiwei1 in https://github.com/labring/FastGPT/pull/5801
* fix: toolcall index not start zero by @c121914yu in https://github.com/labring/FastGPT/pull/5811
* remove invalid log by @c121914yu in https://github.com/labring/FastGPT/pull/5812
* chore(deps): bump starlette from 0.47.2 to 0.49.1 in /plugins/model/llm-ChatGLM2 by @dependabot[bot] in https://github.com/labring/FastGPT/pull/5825
* Update README.md by @c121914yu in https://github.com/labring/FastGPT/pull/5844
* fix: 修复Markdown渲染加粗链接时显示[object Object]的问题 by @mmagi in https://github.com/labring/FastGPT/pull/5839
* Update 4130.mdx by @c121914yu in https://github.com/labring/FastGPT/pull/5855
* V4.14.0 features by @c121914yu in https://github.com/labring/FastGPT/pull/5850
* fix: var render by @c121914yu in https://github.com/labring/FastGPT/pull/5857
* fix: editor by @c121914yu in https://github.com/labring/FastGPT/pull/5859
* fix scrollbar by @newfish-cmyk in https://github.com/labring/FastGPT/pull/5862
* Fix: Tag filter scroll by @c121914yu in https://github.com/labring/FastGPT/pull/5863
* fix: http inputs by @c121914yu in https://github.com/labring/FastGPT/pull/5864
**Full Changelog**: https://github.com/labring/FastGPT/compare/v4.13.2...v4.14.0