@nocobase/plugin-ai 2.4.0-alpha.2 → 2.4.0-alpha.4
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/docs/nocobase/ops-management/migration-manager/built-in-tables.md +0 -1
- package/dist/client/{244.276308c9b2090ec2.js → 244.12a92ac906b07849.js} +1 -1
- package/dist/client/index.js +3 -3
- package/dist/client-v2/{244.e85b8d4659ca66c0.js → 244.a0c8684f23fa5fa9.js} +1 -1
- package/dist/client-v2/index.js +1 -1
- package/dist/common/ai-employee-validation.d.ts +2 -0
- package/dist/common/ai-employee-validation.js +6 -0
- package/dist/common/error-codes.d.ts +1 -0
- package/dist/common/error-codes.js +3 -0
- package/dist/externalVersion.js +15 -15
- package/dist/locale/de-DE.json +0 -11
- package/dist/locale/en-US.json +3 -12
- package/dist/locale/es-ES.json +0 -11
- package/dist/locale/fr-FR.json +0 -11
- package/dist/locale/hu-HU.json +0 -11
- package/dist/locale/id-ID.json +0 -11
- package/dist/locale/it-IT.json +0 -11
- package/dist/locale/ja-JP.json +0 -11
- package/dist/locale/ko-KR.json +0 -11
- package/dist/locale/nl-NL.json +0 -11
- package/dist/locale/pt-BR.json +0 -11
- package/dist/locale/ru-RU.json +0 -11
- package/dist/locale/tr-TR.json +0 -11
- package/dist/locale/uk-UA.json +0 -11
- package/dist/locale/vi-VN.json +0 -11
- package/dist/locale/zh-CN.json +3 -12
- package/dist/locale/zh-TW.json +0 -11
- package/dist/node_modules/@langchain/mistralai/package.json +1 -1
- package/dist/node_modules/@langchain/xai/package.json +1 -1
- package/dist/node_modules/fs-extra/package.json +1 -1
- package/dist/node_modules/jsonrepair/package.json +1 -1
- package/dist/node_modules/just-bash/package.json +1 -1
- package/dist/node_modules/nodejs-snowflake/package.json +1 -1
- package/dist/node_modules/openai/package.json +1 -1
- package/dist/node_modules/zod/package.json +1 -1
- package/dist/server/ai-employees/ai-employee.d.ts +28 -1
- package/dist/server/ai-employees/ai-employee.js +257 -34
- package/dist/server/ai-employees/ai-knowledge-base.js +11 -4
- package/dist/server/ai-employees/middleware/conversation.js +19 -20
- package/dist/server/ai-employees/middleware/index.d.ts +1 -0
- package/dist/server/ai-employees/middleware/index.js +2 -0
- package/dist/server/ai-employees/middleware/tool-result-integrity.d.ts +22 -0
- package/dist/server/ai-employees/middleware/tool-result-integrity.js +211 -0
- package/dist/server/manager/ai-context-datasource-manager.d.ts +10 -12
- package/dist/server/manager/ai-context-datasource-manager.js +0 -3
- package/dist/server/plugin.d.ts +0 -4
- package/dist/server/plugin.js +1 -14
- package/dist/server/resource/aiEmployees.js +26 -0
- package/package.json +2 -2
- package/dist/client-v2/ai-employees/context/datasource.d.ts +0 -10
- package/dist/client-v2/ai-employees/datasource/DatasourceSelector.d.ts +0 -21
- package/dist/client-v2/pages/DatasourceSettingsPage.d.ts +0 -62
- package/dist/collections/ai-context-datasource.d.ts +0 -25
- package/dist/collections/ai-context-datasource.js +0 -89
- package/dist/server/collections/ai-context-datasource.d.ts +0 -10
- package/dist/server/collections/ai-context-datasource.js +0 -44
- package/dist/server/resource/aiContextDatasources.d.ts +0 -10
- package/dist/server/resource/aiContextDatasources.js +0 -45
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
*/
|
|
9
9
|
export declare const AI_EMPLOYEE_USERNAME_MAX_LENGTH = 64;
|
|
10
10
|
export declare const AI_EMPLOYEE_NICKNAME_MAX_LENGTH = 64;
|
|
11
|
+
export declare const KNOWLEDGE_BASE_DATA_PLACEHOLDER = "{knowledgeBaseData}";
|
|
11
12
|
export declare const AI_EMPLOYEE_USERNAME_PATTERN: RegExp;
|
|
12
13
|
export declare const AI_EMPLOYEE_NICKNAME_PATTERN: RegExp;
|
|
13
14
|
export declare const normalizeAIEmployeeName: (value: string) => string;
|
|
15
|
+
export declare const hasKnowledgeBaseDataPlaceholder: (value: unknown) => value is string;
|
|
14
16
|
export declare const isValidAIEmployeeUsername: (value: string) => boolean;
|
|
15
17
|
export declare const isValidAIEmployeeNickname: (value: string) => boolean;
|
|
@@ -30,6 +30,8 @@ __export(ai_employee_validation_exports, {
|
|
|
30
30
|
AI_EMPLOYEE_NICKNAME_PATTERN: () => AI_EMPLOYEE_NICKNAME_PATTERN,
|
|
31
31
|
AI_EMPLOYEE_USERNAME_MAX_LENGTH: () => AI_EMPLOYEE_USERNAME_MAX_LENGTH,
|
|
32
32
|
AI_EMPLOYEE_USERNAME_PATTERN: () => AI_EMPLOYEE_USERNAME_PATTERN,
|
|
33
|
+
KNOWLEDGE_BASE_DATA_PLACEHOLDER: () => KNOWLEDGE_BASE_DATA_PLACEHOLDER,
|
|
34
|
+
hasKnowledgeBaseDataPlaceholder: () => hasKnowledgeBaseDataPlaceholder,
|
|
33
35
|
isValidAIEmployeeNickname: () => isValidAIEmployeeNickname,
|
|
34
36
|
isValidAIEmployeeUsername: () => isValidAIEmployeeUsername,
|
|
35
37
|
normalizeAIEmployeeName: () => normalizeAIEmployeeName
|
|
@@ -37,9 +39,11 @@ __export(ai_employee_validation_exports, {
|
|
|
37
39
|
module.exports = __toCommonJS(ai_employee_validation_exports);
|
|
38
40
|
const AI_EMPLOYEE_USERNAME_MAX_LENGTH = 64;
|
|
39
41
|
const AI_EMPLOYEE_NICKNAME_MAX_LENGTH = 64;
|
|
42
|
+
const KNOWLEDGE_BASE_DATA_PLACEHOLDER = "{knowledgeBaseData}";
|
|
40
43
|
const AI_EMPLOYEE_USERNAME_PATTERN = /^[a-zA-Z0-9_-]+$/;
|
|
41
44
|
const AI_EMPLOYEE_NICKNAME_PATTERN = /^[\p{L}\p{M}\p{N} ._'’()&·-]+$/u;
|
|
42
45
|
const normalizeAIEmployeeName = (value) => value.trim();
|
|
46
|
+
const hasKnowledgeBaseDataPlaceholder = (value) => typeof value === "string" && value.includes(KNOWLEDGE_BASE_DATA_PLACEHOLDER);
|
|
43
47
|
const isWithinLength = (value, maxLength) => value.length > 0 && Array.from(value).length <= maxLength;
|
|
44
48
|
const isValidAIEmployeeUsername = (value) => {
|
|
45
49
|
const normalizedValue = normalizeAIEmployeeName(value);
|
|
@@ -55,6 +59,8 @@ const isValidAIEmployeeNickname = (value) => {
|
|
|
55
59
|
AI_EMPLOYEE_NICKNAME_PATTERN,
|
|
56
60
|
AI_EMPLOYEE_USERNAME_MAX_LENGTH,
|
|
57
61
|
AI_EMPLOYEE_USERNAME_PATTERN,
|
|
62
|
+
KNOWLEDGE_BASE_DATA_PLACEHOLDER,
|
|
63
|
+
hasKnowledgeBaseDataPlaceholder,
|
|
58
64
|
isValidAIEmployeeNickname,
|
|
59
65
|
isValidAIEmployeeUsername,
|
|
60
66
|
normalizeAIEmployeeName
|
|
@@ -9,5 +9,6 @@
|
|
|
9
9
|
export declare const AI_EMPLOYEE_USERNAME_CONFLICT = "AI_EMPLOYEE_USERNAME_CONFLICT";
|
|
10
10
|
export declare const AI_EMPLOYEE_USERNAME_INVALID = "AI_EMPLOYEE_USERNAME_INVALID";
|
|
11
11
|
export declare const AI_EMPLOYEE_NICKNAME_INVALID = "AI_EMPLOYEE_NICKNAME_INVALID";
|
|
12
|
+
export declare const AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID = "AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID";
|
|
12
13
|
export declare const LLM_SERVICE_MODEL_ID_REQUIRED = "LLM_SERVICE_MODEL_ID_REQUIRED";
|
|
13
14
|
export declare const LLM_SERVICE_MODEL_ID_DUPLICATE = "LLM_SERVICE_MODEL_ID_DUPLICATE";
|
|
@@ -26,6 +26,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
26
26
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
27
27
|
var error_codes_exports = {};
|
|
28
28
|
__export(error_codes_exports, {
|
|
29
|
+
AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID: () => AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID,
|
|
29
30
|
AI_EMPLOYEE_NICKNAME_INVALID: () => AI_EMPLOYEE_NICKNAME_INVALID,
|
|
30
31
|
AI_EMPLOYEE_USERNAME_CONFLICT: () => AI_EMPLOYEE_USERNAME_CONFLICT,
|
|
31
32
|
AI_EMPLOYEE_USERNAME_INVALID: () => AI_EMPLOYEE_USERNAME_INVALID,
|
|
@@ -36,10 +37,12 @@ module.exports = __toCommonJS(error_codes_exports);
|
|
|
36
37
|
const AI_EMPLOYEE_USERNAME_CONFLICT = "AI_EMPLOYEE_USERNAME_CONFLICT";
|
|
37
38
|
const AI_EMPLOYEE_USERNAME_INVALID = "AI_EMPLOYEE_USERNAME_INVALID";
|
|
38
39
|
const AI_EMPLOYEE_NICKNAME_INVALID = "AI_EMPLOYEE_NICKNAME_INVALID";
|
|
40
|
+
const AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID = "AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID";
|
|
39
41
|
const LLM_SERVICE_MODEL_ID_REQUIRED = "LLM_SERVICE_MODEL_ID_REQUIRED";
|
|
40
42
|
const LLM_SERVICE_MODEL_ID_DUPLICATE = "LLM_SERVICE_MODEL_ID_DUPLICATE";
|
|
41
43
|
// Annotate the CommonJS export names for ESM import in node:
|
|
42
44
|
0 && (module.exports = {
|
|
45
|
+
AI_EMPLOYEE_KNOWLEDGE_BASE_PROMPT_INVALID,
|
|
43
46
|
AI_EMPLOYEE_NICKNAME_INVALID,
|
|
44
47
|
AI_EMPLOYEE_USERNAME_CONFLICT,
|
|
45
48
|
AI_EMPLOYEE_USERNAME_INVALID,
|
package/dist/externalVersion.js
CHANGED
|
@@ -8,17 +8,17 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
|
-
"@nocobase/plugin-acl": "2.4.0-alpha.
|
|
12
|
-
"@nocobase/plugin-workflow": "2.4.0-alpha.
|
|
13
|
-
"@nocobase/client": "2.4.0-alpha.
|
|
14
|
-
"@nocobase/utils": "2.4.0-alpha.
|
|
15
|
-
"@nocobase/flow-engine": "2.4.0-alpha.
|
|
16
|
-
"@nocobase/client-v2": "2.4.0-alpha.
|
|
17
|
-
"@nocobase/
|
|
18
|
-
"@nocobase/
|
|
19
|
-
"@nocobase/plugin-file-manager": "2.4.0-alpha.
|
|
20
|
-
"@nocobase/server": "2.4.0-alpha.
|
|
21
|
-
"@nocobase/ai": "2.4.0-alpha.
|
|
11
|
+
"@nocobase/plugin-acl": "2.4.0-alpha.4",
|
|
12
|
+
"@nocobase/plugin-workflow": "2.4.0-alpha.4",
|
|
13
|
+
"@nocobase/client": "2.4.0-alpha.4",
|
|
14
|
+
"@nocobase/utils": "2.4.0-alpha.4",
|
|
15
|
+
"@nocobase/flow-engine": "2.4.0-alpha.4",
|
|
16
|
+
"@nocobase/client-v2": "2.4.0-alpha.4",
|
|
17
|
+
"@nocobase/actions": "2.4.0-alpha.4",
|
|
18
|
+
"@nocobase/database": "2.4.0-alpha.4",
|
|
19
|
+
"@nocobase/plugin-file-manager": "2.4.0-alpha.4",
|
|
20
|
+
"@nocobase/server": "2.4.0-alpha.4",
|
|
21
|
+
"@nocobase/ai": "2.4.0-alpha.4",
|
|
22
22
|
"langchain": "1.2.39",
|
|
23
23
|
"react": "18.2.0",
|
|
24
24
|
"antd": "5.24.2",
|
|
@@ -30,14 +30,14 @@ module.exports = {
|
|
|
30
30
|
"react-router-dom": "6.30.1",
|
|
31
31
|
"@langchain/core": "1.1.49",
|
|
32
32
|
"@langchain/langgraph": "1.4.4",
|
|
33
|
-
"@nocobase/cache": "2.4.0-alpha.
|
|
33
|
+
"@nocobase/cache": "2.4.0-alpha.4",
|
|
34
34
|
"@langchain/anthropic": "1.3.17",
|
|
35
35
|
"@langchain/openai": "1.4.7",
|
|
36
36
|
"@langchain/google-genai": "2.1.18",
|
|
37
37
|
"@langchain/ollama": "1.2.7",
|
|
38
|
-
"@nocobase/acl": "2.4.0-alpha.
|
|
39
|
-
"@nocobase/data-source-manager": "2.4.0-alpha.
|
|
40
|
-
"@nocobase/resourcer": "2.4.0-alpha.
|
|
38
|
+
"@nocobase/acl": "2.4.0-alpha.4",
|
|
39
|
+
"@nocobase/data-source-manager": "2.4.0-alpha.4",
|
|
40
|
+
"@nocobase/resourcer": "2.4.0-alpha.4",
|
|
41
41
|
"dayjs": "1.11.13",
|
|
42
42
|
"react-dom": "18.2.0",
|
|
43
43
|
"@formily/core": "2.3.7",
|
package/dist/locale/de-DE.json
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"Actions": "Actions",
|
|
11
11
|
"Add collection": "Add collection",
|
|
12
12
|
"Add content": "Inhalt hinzufügen",
|
|
13
|
-
"Add datasource": "Add data source",
|
|
14
13
|
"Add file": "Add file",
|
|
15
14
|
"Add prompt": "Prompt hinzufügen",
|
|
16
15
|
"Add skill": "Add skill",
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
"Additional system prompt appended to the AI employee’s definition, used to refine instructions": "Additional system prompt appended to the AI employee’s definition, used to refine instructions",
|
|
19
18
|
"Applied": "Applied",
|
|
20
19
|
"Apply to editor": "Apply to editor",
|
|
21
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
22
20
|
"Asc": "Asc",
|
|
23
21
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
24
22
|
"Auto usage": "Auto usage",
|
|
@@ -38,11 +36,9 @@
|
|
|
38
36
|
"CodeEditor": "Code editor",
|
|
39
37
|
"CodeEditor actions": "Code editor actions",
|
|
40
38
|
"Collection": "Collection",
|
|
41
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
42
39
|
"Conversation": "Conversation",
|
|
43
40
|
"Copied": "Copied",
|
|
44
41
|
"Copy": "Copy",
|
|
45
|
-
"Create a new datasource": "Create a new data source",
|
|
46
42
|
"Create or edit collections": "Create or edit collections",
|
|
47
43
|
"Created at": "Created at",
|
|
48
44
|
"Current language": "Current language",
|
|
@@ -50,9 +46,6 @@
|
|
|
50
46
|
"Data modeling tools": "Data modeling tools",
|
|
51
47
|
"Data source query": "Data source query",
|
|
52
48
|
"Data source records counting": "Data source records counting",
|
|
53
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
54
|
-
"Datasource": "Data source",
|
|
55
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
56
49
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
57
50
|
"Default user message": "Default user message",
|
|
58
51
|
"Define collections": "Define collections",
|
|
@@ -67,7 +60,6 @@
|
|
|
67
60
|
"Displays the AI employee’s assigned tasks on the profile when hovering over the button.": "Displays the AI employee’s assigned tasks on the profile when hovering over the button.",
|
|
68
61
|
"Down": "Down",
|
|
69
62
|
"Edit AI employee": "Edit AI employee",
|
|
70
|
-
"Edit datasource": "Edit data source",
|
|
71
63
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
72
64
|
"Edit task": "Edit task",
|
|
73
65
|
"Edit tasks": "Edit tasks",
|
|
@@ -141,7 +133,6 @@
|
|
|
141
133
|
"Presence penalty description": "Zahl zwischen -2,0 und 2,0. Positive Werte bestrafen neue Tokens basierend darauf, ob sie bisher im Text vorkommen, und erhöhen die Wahrscheinlichkeit, dass das Modell über neue Themen spricht.",
|
|
142
134
|
"Preview": "Preview",
|
|
143
135
|
"Previous": "Previous",
|
|
144
|
-
"Processing complete!": "New data source created successfully!",
|
|
145
136
|
"Profile": "Profile",
|
|
146
137
|
"Provider": "Anbieter",
|
|
147
138
|
"Rename": "Rename",
|
|
@@ -154,12 +145,10 @@
|
|
|
154
145
|
"Run": "Run",
|
|
155
146
|
"Select an": "Select an",
|
|
156
147
|
"Select block UI schemas": "Select block UI schemas",
|
|
157
|
-
"Select datasource": "Select data source",
|
|
158
148
|
"Select field values": "Select field values",
|
|
159
149
|
"Send default user message automatically": "Send default user message automatically",
|
|
160
150
|
"Skills": "Skills",
|
|
161
151
|
"Sort": "Sort",
|
|
162
|
-
"Sort Fields": "Sort Fields",
|
|
163
152
|
"Start coding": "Start coding",
|
|
164
153
|
"Structured output": "Strukturierte Ausgabe",
|
|
165
154
|
"Submit": "Submit",
|
package/dist/locale/en-US.json
CHANGED
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
"Actions": "Actions",
|
|
42
42
|
"Add collection": "Add collection",
|
|
43
43
|
"Add content": "Add content",
|
|
44
|
-
"Add datasource": "Add data source",
|
|
45
44
|
"Add file": "Add file",
|
|
46
45
|
"Add prompt": "Add prompt",
|
|
47
46
|
"Add skill": "Add skill",
|
|
@@ -71,7 +70,6 @@
|
|
|
71
70
|
"Apply to editor": "Apply to editor",
|
|
72
71
|
"Available": "Available",
|
|
73
72
|
"Base URL is optional, leave blank to use default (recommended)": "Base URL is optional, leave blank to use default (recommended)",
|
|
74
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
75
73
|
"Asc": "Asc",
|
|
76
74
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
77
75
|
"Auto usage": "Auto usage",
|
|
@@ -95,19 +93,14 @@
|
|
|
95
93
|
"CodeEditor": "Code editor",
|
|
96
94
|
"CodeEditor actions": "Code editor actions",
|
|
97
95
|
"Collection": "Collection",
|
|
98
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
99
96
|
"Conversation": "Conversation",
|
|
100
97
|
"Conversation list": "Conversation list",
|
|
101
98
|
"Copied": "Copied",
|
|
102
99
|
"Copy": "Copy",
|
|
103
|
-
"Create a new datasource": "Create a new data source",
|
|
104
100
|
"Created at": "Created at",
|
|
105
101
|
"Current language": "Current language",
|
|
106
102
|
"Data modeling": "Data modeling",
|
|
107
103
|
"Data modeling tools": "Data modeling tools",
|
|
108
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
109
|
-
"Datasource": "Data source",
|
|
110
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
111
104
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
112
105
|
"Default user message": "Default user message",
|
|
113
106
|
"Delete": "Delete",
|
|
@@ -126,7 +119,6 @@
|
|
|
126
119
|
"Down": "Down",
|
|
127
120
|
"Edit": "Edit",
|
|
128
121
|
"Edit AI employee": "Edit AI employee",
|
|
129
|
-
"Edit datasource": "Edit data source",
|
|
130
122
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
131
123
|
"Edit task": "Edit task",
|
|
132
124
|
"Edit tasks": "Edit tasks",
|
|
@@ -170,6 +162,8 @@
|
|
|
170
162
|
"Knowledge Base": "Knowledge Base",
|
|
171
163
|
"Knowledge Base Prompt": "Knowledge Base Prompt",
|
|
172
164
|
"Knowledge Base Prompt placeholder": "Knowledge Base Prompt placeholder",
|
|
165
|
+
"Include {knowledgeBaseData} in the prompt to insert the retrieved knowledge-base content.": "Include {knowledgeBaseData} in the prompt to insert the retrieved knowledge-base content.",
|
|
166
|
+
"The Knowledge Base Prompt must include {knowledgeBaseData} before you can save it.": "The Knowledge Base Prompt must include {knowledgeBaseData} before you can save it.",
|
|
173
167
|
"KnowledgeBase": "Knowledge Base",
|
|
174
168
|
"Retrieval strategy": "Retrieval strategy",
|
|
175
169
|
"Automatically retrieve for every question": "Automatically retrieve for every question",
|
|
@@ -240,7 +234,6 @@
|
|
|
240
234
|
"Preview": "Preview",
|
|
241
235
|
"Preview and export": "Preview and export",
|
|
242
236
|
"Previous": "Previous",
|
|
243
|
-
"Processing complete!": "New data source created successfully!",
|
|
244
237
|
"Profile": "Profile",
|
|
245
238
|
"Provider": "Provider",
|
|
246
239
|
"Rename": "Rename",
|
|
@@ -252,14 +245,12 @@
|
|
|
252
245
|
"Run": "Run",
|
|
253
246
|
"Select an": "Select an",
|
|
254
247
|
"Select block UI schemas": "Select block UI schemas",
|
|
255
|
-
"Select datasource": "Select data source",
|
|
256
248
|
"Select field values": "Select field values",
|
|
257
249
|
"Send default user message automatically": "Send default user message automatically",
|
|
258
250
|
"Skills": "Skills",
|
|
259
251
|
"Tools": "Tools",
|
|
260
252
|
"MCP tools": "MCP tools",
|
|
261
253
|
"Sort": "Sort",
|
|
262
|
-
"Sort Fields": "Sort Fields",
|
|
263
254
|
"Start coding": "Start coding",
|
|
264
255
|
"Structured output": "Structured output",
|
|
265
256
|
"Define the data structure of the final output of the node": "Define the data structure of the final output of the node",
|
|
@@ -562,7 +553,7 @@
|
|
|
562
553
|
"Prefill the sender input when the chat box starts a new conversation.": "Prefill the sender input when the chat box starts a new conversation.",
|
|
563
554
|
"Scope": "Scope",
|
|
564
555
|
"Select blocks": "Select blocks",
|
|
565
|
-
"Select blocks
|
|
556
|
+
"Select blocks that are sent as default work context.": "Select blocks that are sent as default work context.",
|
|
566
557
|
"Restrict this chat box to selected AI employees. Leave empty to allow all business AI employees.": "Restrict this chat box to selected AI employees. Leave empty to allow all business AI employees.",
|
|
567
558
|
"Restrict this chat box to selected models. Leave empty to allow all available models.": "Restrict this chat box to selected models. Leave empty to allow all available models.",
|
|
568
559
|
"Sender placeholder": "Sender placeholder",
|
package/dist/locale/es-ES.json
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"Actions": "Actions",
|
|
11
11
|
"Add collection": "Add collection",
|
|
12
12
|
"Add content": "Add content",
|
|
13
|
-
"Add datasource": "Add data source",
|
|
14
13
|
"Add file": "Add file",
|
|
15
14
|
"Add prompt": "Add prompt",
|
|
16
15
|
"Add skill": "Add skill",
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
"Additional system prompt appended to the AI employee’s definition, used to refine instructions": "Additional system prompt appended to the AI employee’s definition, used to refine instructions",
|
|
19
18
|
"Applied": "Applied",
|
|
20
19
|
"Apply to editor": "Apply to editor",
|
|
21
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
22
20
|
"Asc": "Asc",
|
|
23
21
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
24
22
|
"Auto usage": "Auto usage",
|
|
@@ -38,11 +36,9 @@
|
|
|
38
36
|
"CodeEditor": "Code editor",
|
|
39
37
|
"CodeEditor actions": "Code editor actions",
|
|
40
38
|
"Collection": "Collection",
|
|
41
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
42
39
|
"Conversation": "Conversation",
|
|
43
40
|
"Copied": "Copied",
|
|
44
41
|
"Copy": "Copy",
|
|
45
|
-
"Create a new datasource": "Create a new data source",
|
|
46
42
|
"Create or edit collections": "Create or edit collections",
|
|
47
43
|
"Created at": "Created at",
|
|
48
44
|
"Current language": "Current language",
|
|
@@ -50,9 +46,6 @@
|
|
|
50
46
|
"Data modeling tools": "Data modeling tools",
|
|
51
47
|
"Data source query": "Data source query",
|
|
52
48
|
"Data source records counting": "Data source records counting",
|
|
53
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
54
|
-
"Datasource": "Data source",
|
|
55
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
56
49
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
57
50
|
"Default user message": "Default user message",
|
|
58
51
|
"Define collections": "Define collections",
|
|
@@ -67,7 +60,6 @@
|
|
|
67
60
|
"Displays the AI employee’s assigned tasks on the profile when hovering over the button.": "Displays the AI employee’s assigned tasks on the profile when hovering over the button.",
|
|
68
61
|
"Down": "Down",
|
|
69
62
|
"Edit AI employee": "Edit AI employee",
|
|
70
|
-
"Edit datasource": "Edit data source",
|
|
71
63
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
72
64
|
"Edit task": "Edit task",
|
|
73
65
|
"Edit tasks": "Edit tasks",
|
|
@@ -141,7 +133,6 @@
|
|
|
141
133
|
"Presence penalty description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.",
|
|
142
134
|
"Preview": "Preview",
|
|
143
135
|
"Previous": "Previous",
|
|
144
|
-
"Processing complete!": "New data source created successfully!",
|
|
145
136
|
"Profile": "Profile",
|
|
146
137
|
"Provider": "Provider",
|
|
147
138
|
"Rename": "Rename",
|
|
@@ -154,12 +145,10 @@
|
|
|
154
145
|
"Run": "Run",
|
|
155
146
|
"Select an": "Select an",
|
|
156
147
|
"Select block UI schemas": "Select block UI schemas",
|
|
157
|
-
"Select datasource": "Select data source",
|
|
158
148
|
"Select field values": "Select field values",
|
|
159
149
|
"Send default user message automatically": "Send default user message automatically",
|
|
160
150
|
"Skills": "Skills",
|
|
161
151
|
"Sort": "Sort",
|
|
162
|
-
"Sort Fields": "Sort Fields",
|
|
163
152
|
"Start coding": "Start coding",
|
|
164
153
|
"Structured output": "Structured output",
|
|
165
154
|
"Submit": "Submit",
|
package/dist/locale/fr-FR.json
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"Actions": "Actions",
|
|
11
11
|
"Add collection": "Add collection",
|
|
12
12
|
"Add content": "Add content",
|
|
13
|
-
"Add datasource": "Add data source",
|
|
14
13
|
"Add file": "Add file",
|
|
15
14
|
"Add prompt": "Add prompt",
|
|
16
15
|
"Add skill": "Add skill",
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
"Additional system prompt appended to the AI employee’s definition, used to refine instructions": "Additional system prompt appended to the AI employee’s definition, used to refine instructions",
|
|
19
18
|
"Applied": "Applied",
|
|
20
19
|
"Apply to editor": "Apply to editor",
|
|
21
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
22
20
|
"Asc": "Asc",
|
|
23
21
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
24
22
|
"Auto usage": "Auto usage",
|
|
@@ -38,11 +36,9 @@
|
|
|
38
36
|
"CodeEditor": "Code editor",
|
|
39
37
|
"CodeEditor actions": "Code editor actions",
|
|
40
38
|
"Collection": "Collection",
|
|
41
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
42
39
|
"Conversation": "Conversation",
|
|
43
40
|
"Copied": "Copied",
|
|
44
41
|
"Copy": "Copy",
|
|
45
|
-
"Create a new datasource": "Create a new data source",
|
|
46
42
|
"Create or edit collections": "Create or edit collections",
|
|
47
43
|
"Created at": "Created at",
|
|
48
44
|
"Current language": "Current language",
|
|
@@ -50,9 +46,6 @@
|
|
|
50
46
|
"Data modeling tools": "Data modeling tools",
|
|
51
47
|
"Data source query": "Data source query",
|
|
52
48
|
"Data source records counting": "Data source records counting",
|
|
53
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
54
|
-
"Datasource": "Data source",
|
|
55
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
56
49
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
57
50
|
"Default user message": "Default user message",
|
|
58
51
|
"Define collections": "Define collections",
|
|
@@ -67,7 +60,6 @@
|
|
|
67
60
|
"Displays the AI employee’s assigned tasks on the profile when hovering over the button.": "Displays the AI employee’s assigned tasks on the profile when hovering over the button.",
|
|
68
61
|
"Down": "Down",
|
|
69
62
|
"Edit AI employee": "Edit AI employee",
|
|
70
|
-
"Edit datasource": "Edit data source",
|
|
71
63
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
72
64
|
"Edit task": "Edit task",
|
|
73
65
|
"Edit tasks": "Edit tasks",
|
|
@@ -141,7 +133,6 @@
|
|
|
141
133
|
"Presence penalty description": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.",
|
|
142
134
|
"Preview": "Preview",
|
|
143
135
|
"Previous": "Previous",
|
|
144
|
-
"Processing complete!": "New data source created successfully!",
|
|
145
136
|
"Profile": "Profile",
|
|
146
137
|
"Provider": "Provider",
|
|
147
138
|
"Rename": "Rename",
|
|
@@ -154,12 +145,10 @@
|
|
|
154
145
|
"Run": "Run",
|
|
155
146
|
"Select an": "Select an",
|
|
156
147
|
"Select block UI schemas": "Select block UI schemas",
|
|
157
|
-
"Select datasource": "Select data source",
|
|
158
148
|
"Select field values": "Select field values",
|
|
159
149
|
"Send default user message automatically": "Send default user message automatically",
|
|
160
150
|
"Skills": "Skills",
|
|
161
151
|
"Sort": "Sort",
|
|
162
|
-
"Sort Fields": "Sort Fields",
|
|
163
152
|
"Start coding": "Start coding",
|
|
164
153
|
"Structured output": "Structured output",
|
|
165
154
|
"Submit": "Submit",
|
package/dist/locale/hu-HU.json
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"Actions": "Actions",
|
|
11
11
|
"Add collection": "Add collection",
|
|
12
12
|
"Add content": "Tartalom hozzáadása",
|
|
13
|
-
"Add datasource": "Add data source",
|
|
14
13
|
"Add file": "Add file",
|
|
15
14
|
"Add prompt": "Kérdés hozzáadása",
|
|
16
15
|
"Add skill": "Add skill",
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
"Additional system prompt appended to the AI employee’s definition, used to refine instructions": "Additional system prompt appended to the AI employee’s definition, used to refine instructions",
|
|
19
18
|
"Applied": "Applied",
|
|
20
19
|
"Apply to editor": "Apply to editor",
|
|
21
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
22
20
|
"Asc": "Asc",
|
|
23
21
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
24
22
|
"Auto usage": "Auto usage",
|
|
@@ -38,11 +36,9 @@
|
|
|
38
36
|
"CodeEditor": "Code editor",
|
|
39
37
|
"CodeEditor actions": "Code editor actions",
|
|
40
38
|
"Collection": "Collection",
|
|
41
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
42
39
|
"Conversation": "Conversation",
|
|
43
40
|
"Copied": "Copied",
|
|
44
41
|
"Copy": "Copy",
|
|
45
|
-
"Create a new datasource": "Create a new data source",
|
|
46
42
|
"Create or edit collections": "Create or edit collections",
|
|
47
43
|
"Created at": "Created at",
|
|
48
44
|
"Current language": "Current language",
|
|
@@ -50,9 +46,6 @@
|
|
|
50
46
|
"Data modeling tools": "Data modeling tools",
|
|
51
47
|
"Data source query": "Data source query",
|
|
52
48
|
"Data source records counting": "Data source records counting",
|
|
53
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
54
|
-
"Datasource": "Data source",
|
|
55
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
56
49
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
57
50
|
"Default user message": "Default user message",
|
|
58
51
|
"Define collections": "Define collections",
|
|
@@ -67,7 +60,6 @@
|
|
|
67
60
|
"Displays the AI employee’s assigned tasks on the profile when hovering over the button.": "Displays the AI employee’s assigned tasks on the profile when hovering over the button.",
|
|
68
61
|
"Down": "Down",
|
|
69
62
|
"Edit AI employee": "Edit AI employee",
|
|
70
|
-
"Edit datasource": "Edit data source",
|
|
71
63
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
72
64
|
"Edit task": "Edit task",
|
|
73
65
|
"Edit tasks": "Edit tasks",
|
|
@@ -141,7 +133,6 @@
|
|
|
141
133
|
"Presence penalty description": "Szám között -2.0 és 2.0. A pozitív értékek büntetik az új tokeneket a szövegben eddig való megjelenésük alapján, növelve a modell valószínűségét, hogy új témákról beszéljen.",
|
|
142
134
|
"Preview": "Preview",
|
|
143
135
|
"Previous": "Previous",
|
|
144
|
-
"Processing complete!": "New data source created successfully!",
|
|
145
136
|
"Profile": "Profile",
|
|
146
137
|
"Provider": "Szolgáltató",
|
|
147
138
|
"Rename": "Rename",
|
|
@@ -154,12 +145,10 @@
|
|
|
154
145
|
"Run": "Run",
|
|
155
146
|
"Select an": "Select an",
|
|
156
147
|
"Select block UI schemas": "Select block UI schemas",
|
|
157
|
-
"Select datasource": "Select data source",
|
|
158
148
|
"Select field values": "Select field values",
|
|
159
149
|
"Send default user message automatically": "Send default user message automatically",
|
|
160
150
|
"Skills": "Skills",
|
|
161
151
|
"Sort": "Sort",
|
|
162
|
-
"Sort Fields": "Sort Fields",
|
|
163
152
|
"Start coding": "Start coding",
|
|
164
153
|
"Structured output": "Strukturált kimenet",
|
|
165
154
|
"Submit": "Submit",
|
package/dist/locale/id-ID.json
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"Actions": "Actions",
|
|
11
11
|
"Add collection": "Add collection",
|
|
12
12
|
"Add content": "Tambah konten",
|
|
13
|
-
"Add datasource": "Add data source",
|
|
14
13
|
"Add file": "Add file",
|
|
15
14
|
"Add prompt": "Tambah prompt",
|
|
16
15
|
"Add skill": "Add skill",
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
"Additional system prompt appended to the AI employee’s definition, used to refine instructions": "Additional system prompt appended to the AI employee’s definition, used to refine instructions",
|
|
19
18
|
"Applied": "Applied",
|
|
20
19
|
"Apply to editor": "Apply to editor",
|
|
21
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
22
20
|
"Asc": "Asc",
|
|
23
21
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
24
22
|
"Auto usage": "Auto usage",
|
|
@@ -38,11 +36,9 @@
|
|
|
38
36
|
"CodeEditor": "Code editor",
|
|
39
37
|
"CodeEditor actions": "Code editor actions",
|
|
40
38
|
"Collection": "Collection",
|
|
41
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
42
39
|
"Conversation": "Conversation",
|
|
43
40
|
"Copied": "Copied",
|
|
44
41
|
"Copy": "Copy",
|
|
45
|
-
"Create a new datasource": "Create a new data source",
|
|
46
42
|
"Create or edit collections": "Create or edit collections",
|
|
47
43
|
"Created at": "Created at",
|
|
48
44
|
"Current language": "Current language",
|
|
@@ -50,9 +46,6 @@
|
|
|
50
46
|
"Data modeling tools": "Data modeling tools",
|
|
51
47
|
"Data source query": "Data source query",
|
|
52
48
|
"Data source records counting": "Data source records counting",
|
|
53
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
54
|
-
"Datasource": "Data source",
|
|
55
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
56
49
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
57
50
|
"Default user message": "Default user message",
|
|
58
51
|
"Define collections": "Define collections",
|
|
@@ -67,7 +60,6 @@
|
|
|
67
60
|
"Displays the AI employee’s assigned tasks on the profile when hovering over the button.": "Displays the AI employee’s assigned tasks on the profile when hovering over the button.",
|
|
68
61
|
"Down": "Down",
|
|
69
62
|
"Edit AI employee": "Edit AI employee",
|
|
70
|
-
"Edit datasource": "Edit data source",
|
|
71
63
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
72
64
|
"Edit task": "Edit task",
|
|
73
65
|
"Edit tasks": "Edit tasks",
|
|
@@ -141,7 +133,6 @@
|
|
|
141
133
|
"Presence penalty description": "Angka antara -2.0 dan 2.0. Nilai positif memberikan penalti pada token baru berdasarkan apakah mereka muncul dalam teks sejauh ini, meningkatkan kemungkinan model untuk berbicara tentang topik baru.",
|
|
142
134
|
"Preview": "Preview",
|
|
143
135
|
"Previous": "Previous",
|
|
144
|
-
"Processing complete!": "New data source created successfully!",
|
|
145
136
|
"Profile": "Profile",
|
|
146
137
|
"Provider": "Penyedia",
|
|
147
138
|
"Rename": "Rename",
|
|
@@ -154,12 +145,10 @@
|
|
|
154
145
|
"Run": "Run",
|
|
155
146
|
"Select an": "Select an",
|
|
156
147
|
"Select block UI schemas": "Select block UI schemas",
|
|
157
|
-
"Select datasource": "Select data source",
|
|
158
148
|
"Select field values": "Select field values",
|
|
159
149
|
"Send default user message automatically": "Send default user message automatically",
|
|
160
150
|
"Skills": "Skills",
|
|
161
151
|
"Sort": "Sort",
|
|
162
|
-
"Sort Fields": "Sort Fields",
|
|
163
152
|
"Start coding": "Start coding",
|
|
164
153
|
"Structured output": "Keluaran terstruktur",
|
|
165
154
|
"Submit": "Submit",
|
package/dist/locale/it-IT.json
CHANGED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"Actions": "Actions",
|
|
11
11
|
"Add collection": "Add collection",
|
|
12
12
|
"Add content": "Aggiungi contenuto",
|
|
13
|
-
"Add datasource": "Add data source",
|
|
14
13
|
"Add file": "Add file",
|
|
15
14
|
"Add prompt": "Aggiungi prompt",
|
|
16
15
|
"Add skill": "Add skill",
|
|
@@ -18,7 +17,6 @@
|
|
|
18
17
|
"Additional system prompt appended to the AI employee’s definition, used to refine instructions": "Additional system prompt appended to the AI employee’s definition, used to refine instructions",
|
|
19
18
|
"Applied": "Applied",
|
|
20
19
|
"Apply to editor": "Apply to editor",
|
|
21
|
-
"Are you sure delete this datasource?": "Are you sure delete this datasource?",
|
|
22
20
|
"Asc": "Asc",
|
|
23
21
|
"Auto skill description": "When auto skill usage is enabled, the AI employee will invoke tools automatically when needed. Otherwise, the tool call parameters will be returned in the conversation for the user to review and trigger manually.",
|
|
24
22
|
"Auto usage": "Auto usage",
|
|
@@ -38,11 +36,9 @@
|
|
|
38
36
|
"CodeEditor": "Code editor",
|
|
39
37
|
"CodeEditor actions": "Code editor actions",
|
|
40
38
|
"Collection": "Collection",
|
|
41
|
-
"Confirm whether to delete": "Confirm whether to delete",
|
|
42
39
|
"Conversation": "Conversation",
|
|
43
40
|
"Copied": "Copied",
|
|
44
41
|
"Copy": "Copy",
|
|
45
|
-
"Create a new datasource": "Create a new data source",
|
|
46
42
|
"Create or edit collections": "Create or edit collections",
|
|
47
43
|
"Created at": "Created at",
|
|
48
44
|
"Current language": "Current language",
|
|
@@ -50,9 +46,6 @@
|
|
|
50
46
|
"Data modeling tools": "Data modeling tools",
|
|
51
47
|
"Data source query": "Data source query",
|
|
52
48
|
"Data source records counting": "Data source records counting",
|
|
53
|
-
"Data source settings description": "The selected collections will be included in the AI employee’s system definition. Metadata such as collection names and field details will be provided to the LLM at the start of each conversation, helping the AI understand and respond to natural language queries for data access or retrieval.",
|
|
54
|
-
"Datasource": "Data source",
|
|
55
|
-
"Datasource deleted successfully": "Data source deleted successfully",
|
|
56
49
|
"Default greeting message": "Hi, I am {{ nickname }}",
|
|
57
50
|
"Default user message": "Default user message",
|
|
58
51
|
"Define collections": "Define collections",
|
|
@@ -67,7 +60,6 @@
|
|
|
67
60
|
"Displays the AI employee’s assigned tasks on the profile when hovering over the button.": "Displays the AI employee’s assigned tasks on the profile when hovering over the button.",
|
|
68
61
|
"Down": "Down",
|
|
69
62
|
"Edit AI employee": "Edit AI employee",
|
|
70
|
-
"Edit datasource": "Edit data source",
|
|
71
63
|
"Edit personalized prompt": "Edit personalized prompt",
|
|
72
64
|
"Edit task": "Edit task",
|
|
73
65
|
"Edit tasks": "Edit tasks",
|
|
@@ -141,7 +133,6 @@
|
|
|
141
133
|
"Presence penalty description": "Numero tra -2.0 e 2.0. I valori positivi penalizzano i nuovi token in base alla loro presenza o meno nel testo finora, aumentando la probabilità del modello di parlare di nuovi argomenti.",
|
|
142
134
|
"Preview": "Preview",
|
|
143
135
|
"Previous": "Previous",
|
|
144
|
-
"Processing complete!": "New data source created successfully!",
|
|
145
136
|
"Profile": "Profile",
|
|
146
137
|
"Provider": "Fornitore",
|
|
147
138
|
"Rename": "Rename",
|
|
@@ -154,12 +145,10 @@
|
|
|
154
145
|
"Run": "Run",
|
|
155
146
|
"Select an": "Select an",
|
|
156
147
|
"Select block UI schemas": "Select block UI schemas",
|
|
157
|
-
"Select datasource": "Select data source",
|
|
158
148
|
"Select field values": "Select field values",
|
|
159
149
|
"Send default user message automatically": "Send default user message automatically",
|
|
160
150
|
"Skills": "Skills",
|
|
161
151
|
"Sort": "Sort",
|
|
162
|
-
"Sort Fields": "Sort Fields",
|
|
163
152
|
"Start coding": "Start coding",
|
|
164
153
|
"Structured output": "Output strutturato",
|
|
165
154
|
"Submit": "Submit",
|