mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00

* Dataset collection forbid (#1885) * perf: tool call support same id * feat: collection forbid * feat: collection forbid * Inheritance Permission for apps (#1897) * feat: app schema define chore: references of authapp * feat: authApp method inheritance * feat: create and update api * feat: update * feat: inheritance Permission controller for app. * feat: abstract version of inheritPermission * feat: ancestorId for apps * chore: update app * fix: inheritPermission abstract version * feat: update folder defaultPermission * feat: app update api * chore: inheritance frontend * chore: app list api * feat: update defaultPermission in app deatil * feat: backend api finished * feat: app inheritance permission fe * fix: app update defaultpermission causes collaborator miss * fix: ts error * chore: adjust the codes * chore: i18n chore: i18n * chore: fe adjust and i18n * chore: adjust the code * feat: resume api; chore: rewrite update api and inheritPermission methods * chore: something * chore: fe code adjusting * feat: frontend adjusting * chore: fe code adjusting * chore: adjusting the code * perf: fe loading * format * Inheritance fix (#1908) * fix: SlideCard * fix: authapp did not return parent app for inheritance app * fix: fe adjusting * feat: fe adjusing * perf: inherit per ux * doc * fix: ts errors (#1916) * perf: inherit permission * fix: permission inherit * Workflow type (#1938) * perf: workflow type tmp workflow perf: workflow type feat: custom field config * perf: dynamic input * perf: node classify * perf: node classify * perf: node classify * perf: node classify * fix: workflow custom input * feat: text editor and customFeedback move to basic nodes * feat: community system plugin * fix: ts * feat: exprEval plugin * perf: workflow type * perf: plugin important * fix: default templates * perf: markdown hr css * lock * perf: fetch url * perf: new plugin version * fix: chat histories update * fix: collection paths invalid * perf: app card ui --------- Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com>
125 lines
4.1 KiB
TypeScript
125 lines
4.1 KiB
TypeScript
import type { AppChatConfigType, AppSimpleEditFormType } from '../app/type';
|
|
import { FlowNodeTypeEnum } from '../workflow/node/constant';
|
|
import { NodeInputKeyEnum, FlowNodeTemplateTypeEnum } from '../workflow/constants';
|
|
import type { FlowNodeInputItemType } from '../workflow/type/io.d';
|
|
import { getAppChatConfig } from '../workflow/utils';
|
|
import { StoreNodeItemType } from '../workflow/type/node';
|
|
import { DatasetSearchModeEnum } from '../dataset/constants';
|
|
|
|
export const getDefaultAppForm = (): AppSimpleEditFormType => ({
|
|
aiSettings: {
|
|
model: 'gpt-3.5-turbo',
|
|
systemPrompt: '',
|
|
temperature: 0,
|
|
isResponseAnswerText: true,
|
|
maxHistories: 6,
|
|
maxToken: 4000
|
|
},
|
|
dataset: {
|
|
datasets: [],
|
|
similarity: 0.4,
|
|
limit: 1500,
|
|
searchMode: DatasetSearchModeEnum.embedding,
|
|
usingReRank: false,
|
|
datasetSearchUsingExtensionQuery: false,
|
|
datasetSearchExtensionBg: ''
|
|
},
|
|
selectedTools: [],
|
|
chatConfig: {}
|
|
});
|
|
|
|
/* format app nodes to edit form */
|
|
export const appWorkflow2Form = ({
|
|
nodes,
|
|
chatConfig
|
|
}: {
|
|
nodes: StoreNodeItemType[];
|
|
chatConfig: AppChatConfigType;
|
|
}) => {
|
|
const defaultAppForm = getDefaultAppForm();
|
|
const findInputValueByKey = (inputs: FlowNodeInputItemType[], key: string) => {
|
|
return inputs.find((item) => item.key === key)?.value;
|
|
};
|
|
|
|
nodes.forEach((node) => {
|
|
if (
|
|
node.flowNodeType === FlowNodeTypeEnum.chatNode ||
|
|
node.flowNodeType === FlowNodeTypeEnum.tools
|
|
) {
|
|
defaultAppForm.aiSettings.model = findInputValueByKey(node.inputs, NodeInputKeyEnum.aiModel);
|
|
defaultAppForm.aiSettings.systemPrompt = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.aiSystemPrompt
|
|
);
|
|
defaultAppForm.aiSettings.temperature = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.aiChatTemperature
|
|
);
|
|
defaultAppForm.aiSettings.maxToken = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.aiChatMaxToken
|
|
);
|
|
defaultAppForm.aiSettings.maxHistories = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.history
|
|
);
|
|
} else if (node.flowNodeType === FlowNodeTypeEnum.datasetSearchNode) {
|
|
defaultAppForm.dataset.datasets = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetSelectList
|
|
);
|
|
defaultAppForm.dataset.similarity = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetSimilarity
|
|
);
|
|
defaultAppForm.dataset.limit = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetMaxTokens
|
|
);
|
|
defaultAppForm.dataset.searchMode =
|
|
findInputValueByKey(node.inputs, NodeInputKeyEnum.datasetSearchMode) ||
|
|
DatasetSearchModeEnum.embedding;
|
|
defaultAppForm.dataset.usingReRank = !!findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetSearchUsingReRank
|
|
);
|
|
defaultAppForm.dataset.datasetSearchUsingExtensionQuery = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetSearchUsingExtensionQuery
|
|
);
|
|
defaultAppForm.dataset.datasetSearchExtensionModel = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetSearchExtensionModel
|
|
);
|
|
defaultAppForm.dataset.datasetSearchExtensionBg = findInputValueByKey(
|
|
node.inputs,
|
|
NodeInputKeyEnum.datasetSearchExtensionBg
|
|
);
|
|
} else if (node.flowNodeType === FlowNodeTypeEnum.pluginModule) {
|
|
if (!node.pluginId) return;
|
|
|
|
defaultAppForm.selectedTools.push({
|
|
id: node.nodeId,
|
|
pluginId: node.pluginId,
|
|
name: node.name,
|
|
avatar: node.avatar,
|
|
intro: node.intro || '',
|
|
flowNodeType: node.flowNodeType,
|
|
showStatus: node.showStatus,
|
|
version: '481',
|
|
inputs: node.inputs,
|
|
outputs: node.outputs,
|
|
templateType: FlowNodeTemplateTypeEnum.other
|
|
});
|
|
} else if (node.flowNodeType === FlowNodeTypeEnum.systemConfig) {
|
|
defaultAppForm.chatConfig = getAppChatConfig({
|
|
chatConfig,
|
|
systemConfigNode: node,
|
|
isPublicFetch: true
|
|
});
|
|
}
|
|
});
|
|
|
|
return defaultAppForm;
|
|
};
|