4.8.12 test (#2994)

* perf: run loop code

* doc

* fix: mulity loop node will error; loop node variables cannot inherit

* back save tip position

* fix: child workflow runtime

* stream connection
This commit is contained in:
Archer
2024-10-25 23:13:53 +08:00
committed by GitHub
parent f89452acdd
commit c722ced68d
12 changed files with 134 additions and 92 deletions

View File

@@ -9,6 +9,26 @@ weight: 812
## 更新指南
### 1. 做好数据备份
### 2. 修改镜像
- 更新 FastGPT 镜像 tag: v4.8.12-beta
- 更新 FastGPT 商业版镜像 tag: v4.8.12-beta
- Sandbox 镜像,可以不更新
### 3. 商业版执行初始化
从任意终端,发起 1 个 HTTP 请求。其中 {{rootkey}} 替换成环境变量里的 `rootkey`{{host}} 替换成**FastGPT 商业版域名**。
```bash
curl --location --request POST 'https://{{host}}/api/admin/init/4812' \
--header 'rootkey: {{rootkey}}' \
--header 'Content-Type: application/json'
```
会初始化应用和知识库的成员组数据。
## 更新说明
@@ -29,3 +49,6 @@ weight: 812
15. 修复 - AI 响应为空时,会造成 LLM 历史记录合并。
16. 修复 - 用户交互节点未阻塞流程。
17. 修复 - 新建 APP有时候会导致空指针报错。
18. 修复 - 拥有多个循环节点时,错误运行。
19. 修复 - 循环节点中修改变量,无法传递。
20. 修复 - 非 stream 模式,嵌套子应用/插件执行时无法获取子应用响应。