-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: plugin run (#1950) * feat: plugin run * fix * ui * fix * change user input type * fix * fix * temp * split out plugin chat * perf: chatbox * perf: chatbox * fix: plugin runtime (#2032) * fix: plugin runtime * fix * fix build * fix build * perf: chat send prompt * perf: chat log ux * perf: chatbox context and share page plugin runtime * perf: plugin run time config * fix: ts * feat: doc * perf: isPc check * perf: variable input render * feat: app search * fix: response box height * fix: phone ui * perf: lock * perf: plugin route * fix: chat (#2049) --------- Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
- Loading branch information
1 parent
090c880
commit b5c98a4
Showing
126 changed files
with
5,053 additions
and
4,358 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
public-hoist-pattern[]=*tiktoken* | ||
public-hoist-pattern[]=*@zilliz/milvus2-sdk-node* | ||
registry=https://registry.npmjs.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
title: 'V4.8.7(进行中)' | ||
description: 'FastGPT V4.8.7 更新说明' | ||
icon: 'upgrade' | ||
draft: false | ||
toc: true | ||
weight: 817 | ||
--- | ||
|
||
## 升级指南 | ||
|
||
### 1. 做好数据库备份 | ||
|
||
### 2. 修改镜像 | ||
|
||
- fastgpt 镜像 tag 修改成 v4.8.7-alpha | ||
- 商业版镜像 tag 修改成 v4.8.7-alpha | ||
|
||
------- | ||
|
||
## V4.8.7 更新说明 | ||
|
||
1. 新增 - 插件支持独立运行,发布和日志查看 | ||
2. 新增 - 应用搜索 | ||
3. 优化 - 对话框代码 | ||
4. 优化 - 升级 Dockerfile node 和 pnpm 版本 | ||
5. 修复 - 简易模式无法变更全局变量 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { StoreNodeItemType } from '../../workflow/type/node'; | ||
import { FlowNodeInputItemType } from '../../workflow/type/io'; | ||
import { FlowNodeTypeEnum } from '../../workflow/node/constant'; | ||
|
||
export const getPluginInputsFromStoreNodes = (nodes: StoreNodeItemType[]) => { | ||
return nodes.find((node) => node.flowNodeType === FlowNodeTypeEnum.pluginInput)?.inputs || []; | ||
}; | ||
export const getPluginRunContent = (e: { pluginInputs: FlowNodeInputItemType[] }) => { | ||
return JSON.stringify(e); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.