@nocobase/plugin-ai 2.1.0-alpha.20 → 2.1.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/tools/knowledge-base-retrieve.d.ts +10 -0
- package/dist/ai/tools/knowledge-base-retrieve.js +94 -0
- package/dist/client/486.77c26e2e7f8daf28.js +10 -0
- package/dist/client/646.ef9d7c2ea8641044.js +10 -0
- package/dist/client/ai-employees/chatbox/AIEmployeeSwitch.d.ts +3 -1
- package/dist/client/ai-employees/chatbox/HintMessageHeader.d.ts +10 -0
- package/dist/client/ai-employees/chatbox/ModelSwitcher.d.ts +3 -1
- package/dist/client/ai-employees/chatbox/SearchSwitch.d.ts +3 -1
- package/dist/client/ai-employees/chatbox/Upload.d.ts +3 -1
- package/dist/client/ai-employees/chatbox/conversations/ConversationsList.d.ts +27 -0
- package/dist/client/ai-employees/chatbox/conversations/WorkflowTasksList.d.ts +31 -0
- package/dist/client/ai-employees/chatbox/conversations/common.d.ts +43 -0
- package/dist/{server/document-loader/loader.worker.d.ts → client/ai-employees/chatbox/conversations/index.d.ts} +1 -1
- package/dist/client/ai-employees/chatbox/hooks/useWorkflowTasks.d.ts +24 -0
- package/dist/client/ai-employees/chatbox/stores/chat-box.d.ts +8 -0
- package/dist/client/ai-employees/chatbox/stores/chat-conversations.d.ts +4 -0
- package/dist/client/ai-employees/chatbox/stores/workflow-tasks.d.ts +41 -0
- package/dist/client/ai-employees/workflow-tasks/tools/index.d.ts +10 -0
- package/dist/client/ai-employees/workflow-tasks/ui/WorkflowTaskOutputCard.d.ts +11 -0
- package/dist/client/components/ListCollapse.d.ts +28 -0
- package/dist/client/index.js +7 -7
- package/dist/client/repositories/AIConfigRepository.d.ts +3 -2
- package/dist/client/workflow/nodes/employee/components/AIEmployeeSelect.d.ts +10 -0
- package/dist/client/workflow/nodes/employee/components/assigness.d.ts +11 -0
- package/dist/client/workflow/nodes/employee/components/file-inputs.d.ts +10 -0
- package/dist/client/workflow/nodes/employee/components/message-inputs.d.ts +12 -0
- package/dist/client/workflow/nodes/employee/components/model-options.d.ts +10 -0
- package/dist/client/workflow/nodes/employee/components/skill-settings.d.ts +10 -0
- package/dist/client/workflow/nodes/employee/components/structured-output.d.ts +10 -0
- package/dist/client/workflow/nodes/employee/components/users-select.d.ts +15 -0
- package/dist/client/workflow/nodes/employee/components/web-search-options.d.ts +10 -0
- package/dist/client/workflow/nodes/employee/configuration.d.ts +12 -0
- package/dist/client/workflow/nodes/employee/flow-models/feedback.d.ts +13 -0
- package/dist/client/workflow/nodes/employee/flow-models/task.d.ts +13 -0
- package/dist/client/workflow/nodes/employee/index.d.ts +7 -31
- package/dist/externalVersion.js +14 -15
- package/dist/locale/en-US.json +44 -1
- package/dist/locale/zh-CN.json +45 -1
- package/dist/node_modules/fast-glob/out/index.js +8 -8
- package/dist/node_modules/fast-glob/package.json +1 -1
- package/dist/node_modules/flexsearch/dist/flexsearch.bundle.min.js +2 -2
- package/dist/node_modules/flexsearch/package.json +1 -1
- package/dist/node_modules/fs-extra/lib/index.js +1 -1
- package/dist/node_modules/fs-extra/package.json +1 -1
- package/dist/node_modules/nodejs-snowflake/nodejs_snowflake.js +1 -1
- package/dist/node_modules/nodejs-snowflake/package.json +1 -1
- package/dist/node_modules/openai/index.js +1 -1
- package/dist/node_modules/openai/package.json +1 -1
- package/dist/node_modules/zod/index.cjs +1 -1
- package/dist/node_modules/zod/package.json +1 -1
- package/dist/server/ai-employees/ai-conversations.d.ts +10 -4
- package/dist/server/ai-employees/ai-conversations.js +52 -14
- package/dist/server/ai-employees/ai-employee.d.ts +8 -10
- package/dist/server/ai-employees/ai-employee.js +130 -145
- package/dist/server/ai-employees/ai-knowledge-base.d.ts +28 -0
- package/dist/server/ai-employees/ai-knowledge-base.js +167 -0
- package/dist/server/ai-employees/middleware/index.d.ts +1 -0
- package/dist/server/ai-employees/middleware/index.js +3 -1
- package/dist/server/ai-employees/middleware/workflow-history.d.ts +22 -0
- package/dist/server/ai-employees/middleware/workflow-history.js +173 -0
- package/dist/server/collections/ai-conversations.js +12 -0
- package/dist/server/collections/ai-workflow-tasks.d.ts +10 -0
- package/dist/server/collections/ai-workflow-tasks.js +112 -0
- package/dist/server/collections/users-ai-workflow-tasks.d.ts +10 -0
- package/dist/server/collections/users-ai-workflow-tasks.js +44 -0
- package/dist/server/document-loader/constants.d.ts +1 -2
- package/dist/server/document-loader/constants.js +6 -1
- package/dist/server/document-loader/loader.d.ts +0 -1
- package/dist/server/document-loader/loader.js +2 -55
- package/dist/server/document-loader/types.d.ts +0 -1
- package/dist/server/llm-providers/provider.js +1 -1
- package/dist/server/manager/built-in-manager.js +5 -4
- package/dist/server/plugin.d.ts +2 -0
- package/dist/server/plugin.js +10 -0
- package/dist/server/resource/aiConversations.js +29 -35
- package/dist/server/resource/aiWorkflowTasks.d.ts +12 -0
- package/dist/server/resource/aiWorkflowTasks.js +290 -0
- package/dist/server/utils.js +3 -2
- package/dist/server/workflow/nodes/employee/files.d.ts +16 -0
- package/dist/server/workflow/nodes/employee/files.js +125 -0
- package/dist/server/workflow/nodes/employee/handler.d.ts +11 -0
- package/dist/server/workflow/nodes/employee/handler.js +107 -0
- package/dist/server/workflow/nodes/employee/index.d.ts +17 -0
- package/dist/server/workflow/nodes/employee/index.js +391 -0
- package/dist/server/workflow/nodes/employee/tools.d.ts +12 -0
- package/dist/server/workflow/nodes/employee/tools.js +133 -0
- package/dist/server/workflow/nodes/employee/types.d.ts +35 -0
- package/dist/server/workflow/nodes/employee/types.js +24 -0
- package/dist/server/workflow/utils.d.ts +14 -0
- package/dist/server/workflow/utils.js +111 -0
- package/package.json +2 -2
- package/dist/client/30.4f30511a3059c422.js +0 -10
- package/dist/server/document-loader/loader.worker.js +0 -68
- package/dist/server/document-loader/vendor/langchain/document_loaders/fs/text.d.ts +0 -20
- package/dist/server/document-loader/vendor/langchain/document_loaders/fs/text.js +0 -96
- /package/dist/client/ai-employees/chatbox/{Conversations.d.ts → conversations/Conversations.d.ts} +0 -0
|
@@ -34,6 +34,7 @@ export declare class AIConfigRepository {
|
|
|
34
34
|
private llmServicesLoaded;
|
|
35
35
|
private aiEmployeesLoaded;
|
|
36
36
|
private aiToolsLoaded;
|
|
37
|
+
private aiToolsBySessionId;
|
|
37
38
|
private aiSkillsLoaded;
|
|
38
39
|
private llmServicesInFlight;
|
|
39
40
|
private aiEmployeesInFlight;
|
|
@@ -47,8 +48,8 @@ export declare class AIConfigRepository {
|
|
|
47
48
|
getAIEmployees(): Promise<AIEmployee[]>;
|
|
48
49
|
refreshAIEmployees(): Promise<AIEmployee[]>;
|
|
49
50
|
getAIEmployeesMap(): Record<string, AIEmployee>;
|
|
50
|
-
getAITools(): Promise<ToolsEntry[]>;
|
|
51
|
-
refreshAITools(): Promise<ToolsEntry[]>;
|
|
51
|
+
getAITools(sessionId?: string): Promise<ToolsEntry[]>;
|
|
52
|
+
refreshAITools(sessionId?: string): Promise<ToolsEntry[]>;
|
|
52
53
|
getAISkills(): Promise<SkillsEntry[]>;
|
|
53
54
|
refreshAISkills(): Promise<SkillsEntry[]>;
|
|
54
55
|
private startRefresh;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const AIEmployeeSelect: React.FC;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import { UsersAddition, UsersSelect } from '@nocobase/plugin-workflow/client';
|
|
10
|
+
export declare const AssigneesSelect: typeof UsersSelect;
|
|
11
|
+
export declare const AssigneesAddition: typeof UsersAddition;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const FileInputs: React.FC;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const MessageInputs: React.FC<{
|
|
11
|
+
aiEmployeesMap: any;
|
|
12
|
+
}>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const ModelOptions: React.FC;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const SkillSettings: React.FC;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const StructuredOutput: React.FC;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare function UsersSelect({ disabled, multiple, value, onChange }: {
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
multiple?: boolean;
|
|
13
|
+
value: any;
|
|
14
|
+
onChange: any;
|
|
15
|
+
}): React.JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const WebSearchOptions: React.FC;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
export declare const Configuration: React.FC;
|
|
11
|
+
export declare const Task: React.FC;
|
|
12
|
+
export declare const Feedback: React.FC;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import { FlowModel } from '@nocobase/flow-engine';
|
|
11
|
+
export declare class AIEmployeeTaskFeedbackModel extends FlowModel {
|
|
12
|
+
render(): React.JSX.Element;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is part of the NocoBase (R) project.
|
|
3
|
+
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
4
|
+
* Authors: NocoBase Team.
|
|
5
|
+
*
|
|
6
|
+
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
7
|
+
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import { FlowModel } from '@nocobase/flow-engine';
|
|
11
|
+
export declare class AIEmployeeTaskModel extends FlowModel {
|
|
12
|
+
render(): React.JSX.Element;
|
|
13
|
+
}
|
|
@@ -14,46 +14,22 @@ export declare class AIEmployeeInstruction extends Instruction {
|
|
|
14
14
|
group: string;
|
|
15
15
|
icon: React.JSX.Element;
|
|
16
16
|
fieldset: {
|
|
17
|
-
|
|
17
|
+
configuration: {
|
|
18
18
|
type: string;
|
|
19
|
-
title: string;
|
|
20
|
-
required: boolean;
|
|
21
|
-
'x-decorator': string;
|
|
22
|
-
'x-component': string;
|
|
23
|
-
};
|
|
24
|
-
message: {
|
|
25
|
-
type: string;
|
|
26
|
-
title: string;
|
|
27
|
-
required: boolean;
|
|
28
|
-
'x-decorator': string;
|
|
29
|
-
'x-component': string;
|
|
30
|
-
'x-component-props': {
|
|
31
|
-
autoSize: {
|
|
32
|
-
minRows: number;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
colleague: {
|
|
37
|
-
type: string;
|
|
38
|
-
title: string;
|
|
39
|
-
required: boolean;
|
|
40
|
-
'x-decorator': string;
|
|
41
|
-
'x-component': string;
|
|
42
|
-
};
|
|
43
|
-
manual: {
|
|
44
|
-
type: string;
|
|
45
|
-
title: string;
|
|
46
|
-
required: boolean;
|
|
47
|
-
'x-decorator': string;
|
|
48
19
|
'x-component': string;
|
|
49
20
|
};
|
|
50
21
|
};
|
|
51
22
|
components: {
|
|
52
|
-
|
|
23
|
+
Configuration: React.FC<{}>;
|
|
53
24
|
WorkflowVariableRawTextArea: typeof WorkflowVariableRawTextArea;
|
|
54
25
|
};
|
|
55
26
|
isAvailable({ engine, workflow }: {
|
|
56
27
|
engine: any;
|
|
57
28
|
workflow: any;
|
|
58
29
|
}): boolean;
|
|
30
|
+
useVariables(node: any): {
|
|
31
|
+
label: any;
|
|
32
|
+
value: any;
|
|
33
|
+
children: any[];
|
|
34
|
+
};
|
|
59
35
|
}
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,21 +8,21 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/plugin-acl": "2.1.0-alpha.
|
|
12
|
-
"@nocobase/plugin-workflow": "2.1.0-alpha.
|
|
13
|
-
"@nocobase/client": "2.1.0-alpha.
|
|
14
|
-
"@nocobase/utils": "2.1.0-alpha.
|
|
15
|
-
"@nocobase/database": "2.1.0-alpha.
|
|
16
|
-
"@nocobase/server": "2.1.0-alpha.
|
|
17
|
-
"@nocobase/plugin-file-manager": "2.1.0-alpha.
|
|
18
|
-
"@nocobase/actions": "2.1.0-alpha.
|
|
19
|
-
"@nocobase/ai": "2.1.0-alpha.
|
|
11
|
+
"@nocobase/plugin-acl": "2.1.0-alpha.21",
|
|
12
|
+
"@nocobase/plugin-workflow": "2.1.0-alpha.21",
|
|
13
|
+
"@nocobase/client": "2.1.0-alpha.21",
|
|
14
|
+
"@nocobase/utils": "2.1.0-alpha.21",
|
|
15
|
+
"@nocobase/database": "2.1.0-alpha.21",
|
|
16
|
+
"@nocobase/server": "2.1.0-alpha.21",
|
|
17
|
+
"@nocobase/plugin-file-manager": "2.1.0-alpha.21",
|
|
18
|
+
"@nocobase/actions": "2.1.0-alpha.21",
|
|
19
|
+
"@nocobase/ai": "2.1.0-alpha.21",
|
|
20
20
|
"langchain": "1.2.24",
|
|
21
21
|
"react": "18.2.0",
|
|
22
22
|
"antd": "5.24.2",
|
|
23
23
|
"@formily/core": "2.3.7",
|
|
24
24
|
"@formily/react": "2.3.7",
|
|
25
|
-
"@nocobase/flow-engine": "2.1.0-alpha.
|
|
25
|
+
"@nocobase/flow-engine": "2.1.0-alpha.21",
|
|
26
26
|
"@ant-design/icons": "5.6.1",
|
|
27
27
|
"@formily/antd-v5": "1.2.3",
|
|
28
28
|
"react-router-dom": "6.30.1",
|
|
@@ -31,21 +31,20 @@ module.exports = {
|
|
|
31
31
|
"lodash": "4.18.1",
|
|
32
32
|
"@langchain/core": "1.1.24",
|
|
33
33
|
"@langchain/langgraph": "1.1.4",
|
|
34
|
-
"@langchain/community": "1.1.15",
|
|
35
34
|
"@langchain/anthropic": "1.3.17",
|
|
36
35
|
"axios": "1.7.7",
|
|
37
36
|
"@langchain/openai": "1.2.7",
|
|
38
37
|
"@langchain/deepseek": "1.0.11",
|
|
39
38
|
"@langchain/google-genai": "2.1.18",
|
|
40
39
|
"@langchain/ollama": "1.2.2",
|
|
41
|
-
"@nocobase/acl": "2.1.0-alpha.
|
|
42
|
-
"@nocobase/resourcer": "2.1.0-alpha.
|
|
40
|
+
"@nocobase/acl": "2.1.0-alpha.21",
|
|
41
|
+
"@nocobase/resourcer": "2.1.0-alpha.21",
|
|
43
42
|
"@emotion/css": "11.13.0",
|
|
44
43
|
"dayjs": "1.11.13",
|
|
45
44
|
"react-i18next": "11.18.6",
|
|
46
|
-
"@nocobase/plugin-data-source-manager": "2.1.0-alpha.
|
|
45
|
+
"@nocobase/plugin-data-source-manager": "2.1.0-alpha.21",
|
|
47
46
|
"ahooks": "3.7.8",
|
|
48
47
|
"@langchain/langgraph-checkpoint": "1.0.0",
|
|
49
|
-
"@nocobase/data-source-manager": "2.1.0-alpha.
|
|
48
|
+
"@nocobase/data-source-manager": "2.1.0-alpha.21",
|
|
50
49
|
"react-dom": "18.2.0"
|
|
51
50
|
};
|
package/dist/locale/en-US.json
CHANGED
|
@@ -207,6 +207,7 @@
|
|
|
207
207
|
"Sort Fields": "Sort Fields",
|
|
208
208
|
"Start coding": "Start coding",
|
|
209
209
|
"Structured output": "Structured output",
|
|
210
|
+
"Define the data structure of the final output of the node": "Define the data structure of the final output of the node",
|
|
210
211
|
"Submit": "Submit",
|
|
211
212
|
"Table": "Table",
|
|
212
213
|
"Task": "Task",
|
|
@@ -364,9 +365,51 @@
|
|
|
364
365
|
"Hello, I'm Nathan, your frontend code engineer. I'll generate high-quality JavaScript / HTML / CSS code for you. What would you like me to build today?": "Hello, I'm Nathan, your frontend code engineer. I'll generate high-quality JavaScript / HTML / CSS code for you. What would you like me to build today?",
|
|
365
366
|
"AI employee task dispatching": "AI employee task dispatching",
|
|
366
367
|
"Awaken and assign specific tasks to ai employees": "Awaken and assign specific tasks to ai employees",
|
|
368
|
+
"Knowledge base retrieval": "Knowledge base retrieval",
|
|
369
|
+
"Retrieve relevant content from the knowledge base.": "Retrieve relevant content from the knowledge base.",
|
|
367
370
|
"List AI employee": "List AI employee",
|
|
368
371
|
"Get the list of available AI employees": "Get the list of available AI employees",
|
|
369
372
|
"Get AI employee": "Get AI employee",
|
|
370
373
|
"Get the detailed definition of AI employee": "Get the detailed definition of AI employee",
|
|
371
|
-
"Done in {{ durationText }}": "Done in {{ durationText }}"
|
|
374
|
+
"Done in {{ durationText }}": "Done in {{ durationText }}",
|
|
375
|
+
"Choose the AI employee for this task": "Choose the AI employee for this task",
|
|
376
|
+
"Operator": "Operator",
|
|
377
|
+
"Complete the task using operator permissions": "Complete the task using operator permissions",
|
|
378
|
+
"Select the LLM to be used for the task": "Select the LLM to be used for the task",
|
|
379
|
+
"Enter the specific task description": "Enter the specific task description",
|
|
380
|
+
"Attachments": "Attachments",
|
|
381
|
+
"Select the file or image to be sent to the LLM": "Select the file or image to be sent to the LLM",
|
|
382
|
+
"Attachment Type": "Attachment Type",
|
|
383
|
+
"File (load via Files collection)": "File (load via Files collection)",
|
|
384
|
+
"File (load via URL)": "File (load via URL)",
|
|
385
|
+
"Enable the LLM to use web search tools during task execution": "Enable the LLM to use web search tools during task execution",
|
|
386
|
+
"Feedback & Notification": "Feedback & Notification",
|
|
387
|
+
"Whether user approval is required before the task outputs the final result": "Whether user approval is required before the task outputs the final result",
|
|
388
|
+
"Assignees": "Assignees",
|
|
389
|
+
"Users who can approve the final output result of the task": "Users who can approve the final output result of the task",
|
|
390
|
+
"No required": "No required",
|
|
391
|
+
"AI decision": "AI decision",
|
|
392
|
+
"Human decision": "Human decision",
|
|
393
|
+
"Approved": "Approved",
|
|
394
|
+
"Approval pending": "Approval pending",
|
|
395
|
+
"Acceptance pending": "Acceptance pending",
|
|
396
|
+
"Processing": "Processing",
|
|
397
|
+
"Pending": "Pending",
|
|
398
|
+
"Resolved": "Resolved",
|
|
399
|
+
"Failed": "Failed",
|
|
400
|
+
"Error": "Error",
|
|
401
|
+
"Aborted": "Aborted",
|
|
402
|
+
"Canceled": "Canceled",
|
|
403
|
+
"Rejected": "Rejected",
|
|
404
|
+
"Retry needed": "Retry needed",
|
|
405
|
+
"Approve": "Approve",
|
|
406
|
+
"Revise": "Revise",
|
|
407
|
+
"Reject": "Reject",
|
|
408
|
+
"The user rejected the execution of this workflow node.": "The user rejected the execution of this workflow node.",
|
|
409
|
+
"Task executing": "Task executing",
|
|
410
|
+
"Response result": "Result",
|
|
411
|
+
"Please enter and send the modification request": "Please enter and send the modification request",
|
|
412
|
+
"{{ nickname }} is working in background.": "{{ nickname }} is working in background.",
|
|
413
|
+
"Click": "Click",
|
|
414
|
+
"to Refresh.": "to Refresh."
|
|
372
415
|
}
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -208,6 +208,7 @@
|
|
|
208
208
|
"Sort Fields": "排序字段",
|
|
209
209
|
"Start coding": "开始编写代码",
|
|
210
210
|
"Structured output": "结构化输出",
|
|
211
|
+
"Define the data structure of the final output of the node": "定义节点最终输出的数据结构",
|
|
211
212
|
"Submit": "提交",
|
|
212
213
|
"Table": "表格",
|
|
213
214
|
"Task": "任务",
|
|
@@ -370,9 +371,52 @@
|
|
|
370
371
|
"Hello, I'm Nathan, your frontend code engineer. I'll generate high-quality JavaScript / HTML / CSS code for you. What would you like me to build today?": "嗨,我是 Nathan,你的前端工程师。我将为您生成高质量 JavaScript / HTML / CSS 代码。今天您想创建什么?",
|
|
371
372
|
"AI employee task dispatching": "AI员工任务分派",
|
|
372
373
|
"Awaken and assign specific tasks to ai employees": "唤醒 AI 员工并分派具体任务",
|
|
374
|
+
"Knowledge base retrieval": "知识库检索",
|
|
375
|
+
"Retrieve relevant content from the knowledge base.": "从知识库中检索相关内容。",
|
|
373
376
|
"List AI employee": "列出 AI 员工",
|
|
374
377
|
"Get the list of available AI employees": "获取可用的 AI 员工列表",
|
|
375
378
|
"Get AI employee": "获取 AI 员工",
|
|
376
379
|
"Get the detailed definition of AI employee": "获取 AI 员工的详细定义",
|
|
377
|
-
"Done in {{ durationText }}": "已完成 {{ durationText }}"
|
|
380
|
+
"Done in {{ durationText }}": "已完成 {{ durationText }}",
|
|
381
|
+
"Choose the AI employee for this task": "为当前任务选择 AI 员工",
|
|
382
|
+
"Operator": "操作者",
|
|
383
|
+
"Complete the task using operator permissions": "用操作者权限完成任务",
|
|
384
|
+
"Select the LLM to be used for the task": "选择任务要使用的大模型",
|
|
385
|
+
"Enter the specific task description": "输入具体任务描述",
|
|
386
|
+
"Attachments": "附件",
|
|
387
|
+
"Select the file or image to be sent to the LLM": "选择发送给大模型的文件或图片",
|
|
388
|
+
"Attachment Type": "附件类型",
|
|
389
|
+
"File (load via Files collection)": "文件 (从文件数据表加载)",
|
|
390
|
+
"File (load via URL)": "文件 (从文件URL加载)",
|
|
391
|
+
"Enable the LLM to use web search tools during task execution": "允许大模型在任务执行期间使用联网搜索工具",
|
|
392
|
+
"Feedback & Notification": "反馈与通知",
|
|
393
|
+
"Requires approval": "需要审批",
|
|
394
|
+
"Whether user approval is required before the task outputs the final result": "任务输出最终结果前是否需要用户审批",
|
|
395
|
+
"Assignees": "审批人",
|
|
396
|
+
"Users who can approve the final output result of the task": "可以批准任务最终输出结果的用户",
|
|
397
|
+
"No required": "不需要",
|
|
398
|
+
"AI decision": "AI 决策",
|
|
399
|
+
"Human decision": "人工决策",
|
|
400
|
+
"Approved": "已审批",
|
|
401
|
+
"Approval pending": "待审批",
|
|
402
|
+
"Acceptance pending": "待接受",
|
|
403
|
+
"Processing": "处理中",
|
|
404
|
+
"Pending": "待处理",
|
|
405
|
+
"Resolved": "完成",
|
|
406
|
+
"Failed": "失败",
|
|
407
|
+
"Error": "出错",
|
|
408
|
+
"Aborted": "已终止",
|
|
409
|
+
"Canceled": "已取消",
|
|
410
|
+
"Rejected": "已拒绝",
|
|
411
|
+
"Retry needed": "需重试",
|
|
412
|
+
"Approve": "批准",
|
|
413
|
+
"Revise": "修改",
|
|
414
|
+
"Reject": "拒绝",
|
|
415
|
+
"The user rejected the execution of this workflow node.": "用户拒绝了该工作流节点的执行。",
|
|
416
|
+
"Task executing": "任务执行中",
|
|
417
|
+
"Response result": "结果",
|
|
418
|
+
"Please enter and send the modification request": "请输入并发送修改要求",
|
|
419
|
+
"{{ nickname }} is working in background.": "{{ nickname }} 在后台工作中",
|
|
420
|
+
"Click": "点击",
|
|
421
|
+
"to Refresh.": "刷新。"
|
|
378
422
|
}
|