Skip to content

Commit

Permalink
Support simpleApp select workflow (#2772)
Browse files Browse the repository at this point in the history
* fix: share page id error

* feat: simple workflow support childApp tool

* perf: aichat box animation
  • Loading branch information
c121914yu committed Sep 23, 2024
1 parent b6833ca commit f4d4d65
Show file tree
Hide file tree
Showing 14 changed files with 83 additions and 51 deletions.
2 changes: 1 addition & 1 deletion docSite/content/zh-cn/docs/development/upgrading/4811.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ weight: 813
6. 新增 - 支持 Openai o1 模型,需增加模型的 `defaultConfig` 配置,覆盖 `temperature``max_tokens``stream`配置,o1 不支持 stream 模式, 详细可重新拉取 `config.json` 配置文件查看。
7. 新增 - AI 对话节点知识库引用,支持配置 role=system 和 role=user,已配置的过自定义提示词的节点将会保持 user 模式,其余用户将转成 system 模式。
8. 新增 - 插件支持上传系统文件。
9. 新增 - 支持工作流嵌套子应用时,可以设置`非流模式`
9. 新增 - 支持工作流嵌套子应用时,可以设置`非流模式`,同时简易模式也可以选择工作流作为插件了,简易模式调用子应用时,都将强制使用非流模式
10. 新增 - 调试模式下,子应用调用,支持返回详细运行数据。
11. 新增 - 保留所有模式下子应用嵌套调用的日志。
12. 优化 - 工作流嵌套层级限制 20 层,避免因编排不合理导致的无限死循环。
Expand Down
1 change: 1 addition & 0 deletions packages/global/core/workflow/template/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const Input_Template_UserChatInput: FlowNodeInputItemType = {
renderTypeList: [FlowNodeInputTypeEnum.reference, FlowNodeInputTypeEnum.textarea],
valueType: WorkflowIOValueTypeEnum.string,
label: i18nT('workflow:user_question'),
toolDescription: i18nT('workflow:user_question'),
required: true
};

Expand Down
2 changes: 1 addition & 1 deletion packages/service/core/app/plugin/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export async function getChildAppPreviewNode({
intro: app.intro,
inputExplanationUrl: app.inputExplanationUrl,
showStatus: app.showStatus,
isTool: isPlugin,
isTool: true,
version: app.version,
sourceHandle: getHandleConfig(true, true, true, true),
targetHandle: getHandleConfig(true, true, true, true),
Expand Down
4 changes: 2 additions & 2 deletions packages/web/i18n/zh/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"permission.des.write": "可查看和编辑应用",
"plugin_cost_per_times": "{{cost}}/次",
"plugin_dispatch": "插件调用",
"plugin_dispatch_tip": "给模型附加额外的能力,具体调用哪些插件,将由模型自主决定。\n若选择了插件,知识库调用将自动作为一个特殊的插件。",
"plugin_dispatch_tip": "给模型附加获取外部数据的能力,具体调用哪些插件,将由模型自主决定,所有插件都将以非流模式运行\n若选择了插件,知识库调用将自动作为一个特殊的插件。",
"publish_channel": "发布渠道",
"publish_success": "发布成功",
"saved_success": "保存成功",
Expand Down Expand Up @@ -155,4 +155,4 @@
"workflow.user_file_input_desc": "用户上传的文档和图片链接",
"workflow.user_select": "用户选择",
"workflow.user_select_tip": "该模块可配置多个选项,以供对话时选择。不同选项可导向不同工作流支线"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const AIContentCard = React.memo(function AIContentCard({
<AIResponseBox
key={key}
value={value}
isLastChild={isLastChild && i === chatValue.length - 1}
isLastResponseValue={isLastChild && i === chatValue.length - 1}
isChatting={isChatting}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const RenderOutput = () => {
<AIResponseBox
key={key}
value={value}
isLastChild={true}
isLastResponseValue={true}
isChatting={isChatting}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ const RenderPluginInput = ({
*
</Box>
)}
{input.label}
{t(input.label as any)}
</Box>
{input.description && <QuestionTip ml={2} label={input.description} />}
{input.description && <QuestionTip ml={2} label={t(input.description as any)} />}
</Flex>
{render}
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { onSendPrompt } from '../ChatContainer/useChat';

type props = {
value: UserChatItemValueItemType | AIChatItemValueItemType;
isLastChild: boolean;
isLastResponseValue: boolean;
isChatting: boolean;
};

Expand Down Expand Up @@ -167,11 +167,13 @@ const RenderInteractive = React.memo(function RenderInteractive({
);
});

const AIResponseBox = ({ value, isLastChild, isChatting }: props) => {
const AIResponseBox = ({ value, isLastResponseValue, isChatting }: props) => {
if (value.type === ChatItemValueTypeEnum.text && value.text)
return <RenderText showAnimation={isChatting && isLastChild} text={value.text.content} />;
return (
<RenderText showAnimation={isChatting && isLastResponseValue} text={value.text.content} />
);
if (value.type === ChatItemValueTypeEnum.tool && value.tools)
return <RenderTool showAnimation={isChatting && isLastChild} tools={value.tools} />;
return <RenderTool showAnimation={isChatting} tools={value.tools} />;
if (
value.type === ChatItemValueTypeEnum.interactive &&
value.interactive &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ console.log("Chat box loaded")
return (
<MyModal
isOpen
isCentered
iconSrc="/imgs/modal/usingWay.svg"
title={t('common:core.app.outLink.Select Using Way')}
onClose={onClose}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,10 @@ import {
InputGroup,
InputLeftElement,
ModalBody,
ModalFooter,
NumberDecrementStepper,
NumberIncrementStepper,
NumberInput,
NumberInputField,
NumberInputStepper,
Switch,
Textarea
ModalFooter
} from '@chakra-ui/react';
import FillRowTabs from '@fastgpt/web/components/common/Tabs/FillRowTabs';
import { useRequest, useRequest2 } from '@fastgpt/web/hooks/useRequest';
import { useRequest2 } from '@fastgpt/web/hooks/useRequest';
import EmptyTip from '@fastgpt/web/components/common/EmptyTip';
import {
FlowNodeTemplateType,
Expand All @@ -39,28 +32,37 @@ import MyBox from '@fastgpt/web/components/common/MyBox';
import { Controller, useForm } from 'react-hook-form';
import { getTeamPlugTemplates } from '@/web/core/app/api/plugin';
import { ParentIdType } from '@fastgpt/global/common/parentFolder/type';
import { AppTypeEnum } from '@fastgpt/global/core/app/constants';
import { getAppFolderPath } from '@/web/core/app/api/app';
import FolderPath from '@/components/common/folder/Path';
import MyTooltip from '@fastgpt/web/components/common/MyTooltip';
import CostTooltip from '@/components/core/app/plugin/CostTooltip';
import { useSystemStore } from '@/web/common/system/useSystemStore';
import RenderPluginInput from '@/components/core/chat/ChatContainer/PluginRunBox/components/renderPluginInput';
import { WorkflowIOValueTypeEnum } from '@fastgpt/global/core/workflow/constants';
import { NodeInputKeyEnum, WorkflowIOValueTypeEnum } from '@fastgpt/global/core/workflow/constants';
import { useContextSelector } from 'use-context-selector';
import { AppContext } from '../../context';

type Props = {
selectedTools: FlowNodeTemplateType[];
onAddTool: (tool: FlowNodeTemplateType) => void;
onRemoveTool: (tool: NodeTemplateListItemType) => void;
};

const childAppSystemKey: string[] = [
NodeInputKeyEnum.forbidStream,
NodeInputKeyEnum.history,
NodeInputKeyEnum.historyMaxAmount,
NodeInputKeyEnum.userChatInput
];

enum TemplateTypeEnum {
'systemPlugin' = 'systemPlugin',
'teamPlugin' = 'teamPlugin'
}

const ToolSelectModal = ({ onClose, ...props }: Props & { onClose: () => void }) => {
const { t } = useTranslation();
const { appDetail } = useContextSelector(AppContext, (v) => v);

const [templateType, setTemplateType] = useState(TemplateTypeEnum.teamPlugin);
const [parentId, setParentId] = useState<ParentIdType>('');
Expand All @@ -85,9 +87,8 @@ const ToolSelectModal = ({ onClose, ...props }: Props & { onClose: () => void })
} else if (type === TemplateTypeEnum.teamPlugin) {
return getTeamPlugTemplates({
parentId,
searchKey: searchVal,
type: [AppTypeEnum.folder, AppTypeEnum.httpPlugin, AppTypeEnum.plugin]
});
searchKey: searchVal
}).then((res) => res.filter((app) => app.id !== appDetail._id));
}
},
{
Expand Down Expand Up @@ -238,20 +239,24 @@ const RenderList = React.memo(function RenderList({
}
}, [configTool, reset]);

const { mutate: onClickAdd, isLoading } = useRequest({
mutationFn: async (template: FlowNodeTemplateType) => {
const { runAsync: onClickAdd, loading: isLoading } = useRequest2(
async (template: NodeTemplateListItemType) => {
const res = await getPreviewPluginNode({ appId: template.id });

// All input is tool params
if (res.inputs.every((input) => input.toolDescription)) {
if (
res.inputs.every((input) => childAppSystemKey.includes(input.key) || input.toolDescription)
) {
onAddTool(res);
} else {
reset();
setConfigTool(res);
}
},
errorToast: t('common:core.module.templates.Load plugin error')
});
{
errorToast: t('common:core.module.templates.Load plugin error')
}
);

return templates.length === 0 && !isLoadingData ? (
<EmptyTip text={t('common:core.app.ToolCall.No plugin')} />
Expand Down Expand Up @@ -340,6 +345,7 @@ const RenderList = React.memo(function RenderList({
{!!configTool && (
<MyModal
isOpen
isCentered
title={t('common:core.app.ToolCall.Parameter setting')}
iconSrc="core/app/toolCall"
overflow={'auto'}
Expand All @@ -359,7 +365,7 @@ const RenderList = React.memo(function RenderList({
)}
</HStack>
{configTool.inputs
.filter((item) => !item.toolDescription)
.filter((item) => !item.toolDescription && !childAppSystemKey.includes(item.key))
.map((input) => {
return (
<Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ const FieldEditModal = ({
}
}

if (isToolInput) {
// Focus remove toolDescription
if (isToolInput && data.renderTypeList.includes(FlowNodeInputTypeEnum.reference)) {
data.toolDescription = data.description;
} else {
data.toolDescription = undefined;
Expand Down
14 changes: 5 additions & 9 deletions projects/app/src/pages/chat/share.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,17 +356,13 @@ const OutLink = ({

const Render = (props: Props) => {
const { shareId, authToken } = props;
const { localUId, setLocalUId } = useShareChatStore();
const { localUId, loaded } = useShareChatStore();

const contextParams = useMemo(() => {
if (!localUId) {
const localId = `shareChat-${Date.now()}-${nanoid()}`;
setLocalUId(localId);
return { shareId, outLinkUid: authToken || localId };
}

return { shareId, outLinkUid: authToken || localUId };
}, []);
}, [authToken, localUId, shareId]);

if (!loaded || !contextParams.outLinkUid) return <></>;

return (
<ChatContextProvider params={contextParams}>
Expand All @@ -375,7 +371,7 @@ const Render = (props: Props) => {
);
};

export default Render;
export default React.memo(Render);

export async function getServerSideProps(context: any) {
const shareId = context?.query?.shareId || '';
Expand Down
18 changes: 17 additions & 1 deletion projects/app/src/web/core/app/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,23 @@ export function form2AppWorkflow(
y: 545
},
version: tool.version,
inputs: tool.inputs,
inputs: tool.inputs.map((input) => {
// Special key value
if (input.key === NodeInputKeyEnum.forbidStream) {
input.value = true;
}
// Special tool
if (
tool.flowNodeType === FlowNodeTypeEnum.appModule &&
input.key === NodeInputKeyEnum.history
) {
return {
...input,
value: formData.aiSettings.maxHistories
};
}
return input;
}),
outputs: tool.outputs
}
],
Expand Down
25 changes: 17 additions & 8 deletions projects/app/src/web/core/chat/storeShareChat.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,34 @@
import { create } from 'zustand';
import { devtools, persist } from 'zustand/middleware';
import { immer } from 'zustand/middleware/immer';
import { customAlphabet } from 'nanoid';
const nanoid = customAlphabet(
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWSYZ1234567890_',
24
);

type State = {
localUId: string;
setLocalUId: (id: string) => void;
loaded: boolean;
};

export const useShareChatStore = create<State>()(
devtools(
persist(
immer((set, get) => ({
localUId: '',
setLocalUId(id) {
set((state) => {
state.localUId = id;
});
}
localUId: `shareChat-${Date.now()}-${nanoid()}`,
loaded: false
})),
{
name: 'shareChatStore'
name: 'shareChatStore',
onRehydrateStorage: () => (state) => {
if (state) {
state.loaded = true;
}
},
partialize: (state) => ({
localUId: state.localUId
})
}
)
)
Expand Down

0 comments on commit f4d4d65

Please sign in to comment.