@cognigy/rest-api-client 2025.22.0 → 2025.23.0
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/CHANGELOG.md +5 -0
- package/build/apigroups/SimulationAPIGroup_2_0.js +2 -1
- package/build/shared/charts/descriptors/connectionNodes/generativeAIProviders/azureOpenAIProviderOauth2Connection.js +3 -1
- package/build/shared/charts/descriptors/index.js +1 -0
- package/build/shared/charts/descriptors/service/agentTools/knowledgeTool.js +340 -0
- package/build/shared/charts/descriptors/service/aiAgent/aiAgentJob.js +3 -2
- package/build/shared/charts/descriptors/service/aiAgent/helpers/createToolDefinitions.js +28 -29
- package/build/shared/charts/descriptors/service/index.js +3 -1
- package/build/shared/charts/descriptors/service/llmPrompt/LLMPromptV2.js +3 -2
- package/build/shared/interfaces/IProfile.js +5 -1
- package/build/shared/interfaces/resources/INodeDescriptorSet.js +11 -1
- package/build/shared/interfaces/resources/settings/IAgentSettings.js +12 -7
- package/build/shared/interfaces/resources/settings/IPiiDataRedactionSettings.js +142 -0
- package/build/shared/interfaces/resources/settings/index.js +4 -1
- package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IAgentSettings_2_0.js +104 -0
- package/build/shared/interfaces/restAPI/simulation/persona/IGeneratePersonaFromTranscriptRest_2_0.js +20 -0
- package/dist/esm/apigroups/SimulationAPIGroup_2_0.js +2 -1
- package/dist/esm/shared/charts/descriptors/connectionNodes/generativeAIProviders/azureOpenAIProviderOauth2Connection.js +3 -1
- package/dist/esm/shared/charts/descriptors/index.js +2 -1
- package/dist/esm/shared/charts/descriptors/service/agentTools/knowledgeTool.js +338 -0
- package/dist/esm/shared/charts/descriptors/service/aiAgent/aiAgentJob.js +3 -2
- package/dist/esm/shared/charts/descriptors/service/aiAgent/helpers/createToolDefinitions.js +28 -29
- package/dist/esm/shared/charts/descriptors/service/index.js +1 -0
- package/dist/esm/shared/charts/descriptors/service/llmPrompt/LLMPromptV2.js +3 -2
- package/dist/esm/shared/interfaces/IProfile.js +4 -0
- package/dist/esm/shared/interfaces/resources/INodeDescriptorSet.js +11 -1
- package/dist/esm/shared/interfaces/resources/settings/IAgentSettings.js +16 -11
- package/dist/esm/shared/interfaces/resources/settings/IPiiDataRedactionSettings.js +139 -0
- package/dist/esm/shared/interfaces/resources/settings/index.js +5 -4
- package/dist/esm/shared/interfaces/restAPI/resources/project/v2.0/settings/IAgentSettings_2_0.js +103 -1
- package/dist/esm/shared/interfaces/restAPI/simulation/persona/IGeneratePersonaFromTranscriptRest_2_0.js +19 -0
- package/package.json +1 -1
- package/types/index.d.ts +241 -15
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.piiDataRedactionSettingsSchema = exports.customPatternSettingsSchema = exports.piiFieldSettingsSchema = exports.EPiiBehaviorType = void 0;
|
|
4
|
+
var EPiiBehaviorType;
|
|
5
|
+
(function (EPiiBehaviorType) {
|
|
6
|
+
EPiiBehaviorType["PREDEFINED_ALIAS"] = "predefined-alias";
|
|
7
|
+
EPiiBehaviorType["CUSTOM_ALIAS"] = "custom-alias";
|
|
8
|
+
})(EPiiBehaviorType = exports.EPiiBehaviorType || (exports.EPiiBehaviorType = {}));
|
|
9
|
+
exports.piiFieldSettingsSchema = {
|
|
10
|
+
title: "piiFieldSettingsSchema",
|
|
11
|
+
type: "object",
|
|
12
|
+
additionalProperties: false,
|
|
13
|
+
required: ["enabled", "name"],
|
|
14
|
+
properties: {
|
|
15
|
+
enabled: { type: "boolean" },
|
|
16
|
+
behavior: {
|
|
17
|
+
oneOf: [
|
|
18
|
+
{
|
|
19
|
+
type: "object",
|
|
20
|
+
additionalProperties: false,
|
|
21
|
+
required: ["type"],
|
|
22
|
+
properties: {
|
|
23
|
+
type: {
|
|
24
|
+
type: "string",
|
|
25
|
+
enum: [EPiiBehaviorType.PREDEFINED_ALIAS],
|
|
26
|
+
},
|
|
27
|
+
customAlias: { type: "null" },
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
type: "object",
|
|
32
|
+
additionalProperties: false,
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
required: ["type", "customAlias"],
|
|
35
|
+
properties: {
|
|
36
|
+
type: {
|
|
37
|
+
type: "string",
|
|
38
|
+
enum: [EPiiBehaviorType.CUSTOM_ALIAS],
|
|
39
|
+
},
|
|
40
|
+
customAlias: {
|
|
41
|
+
type: "string",
|
|
42
|
+
minLength: 3,
|
|
43
|
+
maxLength: 100
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
],
|
|
48
|
+
},
|
|
49
|
+
scope: {
|
|
50
|
+
type: ["object", "null"],
|
|
51
|
+
additionalProperties: false,
|
|
52
|
+
required: ["logs", "analytics"],
|
|
53
|
+
properties: {
|
|
54
|
+
logs: { type: "boolean" },
|
|
55
|
+
analytics: { type: "boolean" },
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
name: { type: "string", minLength: 3, maxLength: 100, pattern: "^[a-zA-Z0-9_\\s]+$" },
|
|
59
|
+
},
|
|
60
|
+
if: {
|
|
61
|
+
properties: {
|
|
62
|
+
enabled: { const: true }
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
then: {
|
|
66
|
+
required: ["enabled", "name", "behavior", "scope"]
|
|
67
|
+
},
|
|
68
|
+
else: {
|
|
69
|
+
required: ["enabled", "name"]
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
exports.customPatternSettingsSchema = {
|
|
73
|
+
title: "customPatternSettingsSchema",
|
|
74
|
+
type: "object",
|
|
75
|
+
additionalProperties: false,
|
|
76
|
+
required: ["name", "regex", "behavior", "scope"],
|
|
77
|
+
properties: {
|
|
78
|
+
regex: {
|
|
79
|
+
type: "string",
|
|
80
|
+
minLength: 1,
|
|
81
|
+
maxLength: 1000
|
|
82
|
+
},
|
|
83
|
+
behavior: {
|
|
84
|
+
type: "object",
|
|
85
|
+
additionalProperties: false,
|
|
86
|
+
// @ts-ignore
|
|
87
|
+
required: ["type", "customAlias"],
|
|
88
|
+
properties: {
|
|
89
|
+
type: {
|
|
90
|
+
type: "string",
|
|
91
|
+
enum: [EPiiBehaviorType.CUSTOM_ALIAS],
|
|
92
|
+
},
|
|
93
|
+
customAlias: {
|
|
94
|
+
type: "string",
|
|
95
|
+
minLength: 3,
|
|
96
|
+
maxLength: 100
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
scope: {
|
|
101
|
+
type: ["object", "null"],
|
|
102
|
+
additionalProperties: false,
|
|
103
|
+
required: ["logs", "analytics"],
|
|
104
|
+
properties: {
|
|
105
|
+
logs: { type: "boolean" },
|
|
106
|
+
analytics: { type: "boolean" },
|
|
107
|
+
},
|
|
108
|
+
},
|
|
109
|
+
name: {
|
|
110
|
+
type: "string",
|
|
111
|
+
minLength: 3,
|
|
112
|
+
maxLength: 100,
|
|
113
|
+
pattern: "^[a-zA-Z0-9_\\s]+$"
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
exports.piiDataRedactionSettingsSchema = {
|
|
118
|
+
title: "piiDataRedactionSettingsSchema",
|
|
119
|
+
type: "object",
|
|
120
|
+
additionalProperties: false,
|
|
121
|
+
required: [
|
|
122
|
+
"emailAddress",
|
|
123
|
+
"phoneNumber",
|
|
124
|
+
"creditCard",
|
|
125
|
+
"ssn",
|
|
126
|
+
"ipAddressV4",
|
|
127
|
+
"ipAddressV6",
|
|
128
|
+
],
|
|
129
|
+
properties: {
|
|
130
|
+
emailAddress: exports.piiFieldSettingsSchema,
|
|
131
|
+
phoneNumber: exports.piiFieldSettingsSchema,
|
|
132
|
+
creditCard: exports.piiFieldSettingsSchema,
|
|
133
|
+
ssn: exports.piiFieldSettingsSchema,
|
|
134
|
+
ipAddressV4: exports.piiFieldSettingsSchema,
|
|
135
|
+
ipAddressV6: exports.piiFieldSettingsSchema,
|
|
136
|
+
customTypes: {
|
|
137
|
+
type: ["object", "null"],
|
|
138
|
+
additionalProperties: exports.customPatternSettingsSchema
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
//# sourceMappingURL=IPiiDataRedactionSettings.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.fileExtractorOptions = exports.knowledgeAISettingsDataSchema = exports.translationProviders = exports.translationSettingsDataSchema = exports.audioPreviewProviders = exports.audioPreviewSettingsDataSchema = exports.generativeAISettingsDataSchema = exports.sharedSettingsSchema = exports.flowSettingsSchema = exports.flowSettingsDataSchema = exports.flowIntentMappingOrderType = exports.agentSettingsSchema = exports.agentSettingsDataSchema = void 0;
|
|
3
|
+
exports.piiDataRedactionSettingsSchema = exports.EPiiBehaviorType = exports.fileExtractorOptions = exports.knowledgeAISettingsDataSchema = exports.translationProviders = exports.translationSettingsDataSchema = exports.audioPreviewProviders = exports.audioPreviewSettingsDataSchema = exports.generativeAISettingsDataSchema = exports.sharedSettingsSchema = exports.flowSettingsSchema = exports.flowSettingsDataSchema = exports.flowIntentMappingOrderType = exports.agentSettingsSchema = exports.agentSettingsDataSchema = void 0;
|
|
4
4
|
var IAgentSettings_1 = require("./IAgentSettings");
|
|
5
5
|
Object.defineProperty(exports, "agentSettingsDataSchema", { enumerable: true, get: function () { return IAgentSettings_1.agentSettingsDataSchema; } });
|
|
6
6
|
Object.defineProperty(exports, "agentSettingsSchema", { enumerable: true, get: function () { return IAgentSettings_1.agentSettingsSchema; } });
|
|
@@ -21,4 +21,7 @@ Object.defineProperty(exports, "translationProviders", { enumerable: true, get:
|
|
|
21
21
|
var IKnowledgeAISettings_1 = require("./IKnowledgeAISettings");
|
|
22
22
|
Object.defineProperty(exports, "knowledgeAISettingsDataSchema", { enumerable: true, get: function () { return IKnowledgeAISettings_1.knowledgeAISettingsDataSchema; } });
|
|
23
23
|
Object.defineProperty(exports, "fileExtractorOptions", { enumerable: true, get: function () { return IKnowledgeAISettings_1.fileExtractorOptions; } });
|
|
24
|
+
var IPiiDataRedactionSettings_1 = require("./IPiiDataRedactionSettings");
|
|
25
|
+
Object.defineProperty(exports, "EPiiBehaviorType", { enumerable: true, get: function () { return IPiiDataRedactionSettings_1.EPiiBehaviorType; } });
|
|
26
|
+
Object.defineProperty(exports, "piiDataRedactionSettingsSchema", { enumerable: true, get: function () { return IPiiDataRedactionSettings_1.piiDataRedactionSettingsSchema; } });
|
|
24
27
|
//# sourceMappingURL=index.js.map
|
package/build/shared/interfaces/restAPI/resources/project/v2.0/settings/IAgentSettings_2_0.js
CHANGED
|
@@ -1,3 +1,107 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EPiiBehaviorType = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @openapi
|
|
6
|
+
*
|
|
7
|
+
* components:
|
|
8
|
+
* schemas:
|
|
9
|
+
* EPiiBehaviorType:
|
|
10
|
+
* type: string
|
|
11
|
+
* description: PII redaction behavior types
|
|
12
|
+
* enum:
|
|
13
|
+
* - predefined-alias
|
|
14
|
+
* - custom-alias
|
|
15
|
+
*
|
|
16
|
+
* IRedactionBehavior:
|
|
17
|
+
* oneOf:
|
|
18
|
+
* - type: object
|
|
19
|
+
* properties:
|
|
20
|
+
* type:
|
|
21
|
+
* type: string
|
|
22
|
+
* enum: [predefined-alias]
|
|
23
|
+
* customAlias:
|
|
24
|
+
* type: string
|
|
25
|
+
* nullable: true
|
|
26
|
+
* required: [type, customAlias]
|
|
27
|
+
* - type: object
|
|
28
|
+
* properties:
|
|
29
|
+
* type:
|
|
30
|
+
* type: string
|
|
31
|
+
* enum: [custom-alias]
|
|
32
|
+
* customAlias:
|
|
33
|
+
* type: string
|
|
34
|
+
* description: Custom alias to replace PII data with
|
|
35
|
+
* required: [type, customAlias]
|
|
36
|
+
*
|
|
37
|
+
* IRedactionScope:
|
|
38
|
+
* type: object
|
|
39
|
+
* properties:
|
|
40
|
+
* logs:
|
|
41
|
+
* type: boolean
|
|
42
|
+
* description: Whether to redact PII in logs
|
|
43
|
+
* analytics:
|
|
44
|
+
* type: boolean
|
|
45
|
+
* description: Whether to redact PII in analytics
|
|
46
|
+
* required: [logs, analytics]
|
|
47
|
+
*
|
|
48
|
+
* IPiiFieldSettings:
|
|
49
|
+
* type: object
|
|
50
|
+
* properties:
|
|
51
|
+
* enabled:
|
|
52
|
+
* type: boolean
|
|
53
|
+
* description: Whether PII redaction is enabled for this field type
|
|
54
|
+
* behavior:
|
|
55
|
+
* $ref: '#/components/schemas/IRedactionBehavior'
|
|
56
|
+
* scope:
|
|
57
|
+
* $ref: '#/components/schemas/IRedactionScope'
|
|
58
|
+
* name:
|
|
59
|
+
* type: string
|
|
60
|
+
* description: Display name for the PII field type
|
|
61
|
+
* required: [enabled, behavior, scope, name]
|
|
62
|
+
*
|
|
63
|
+
* ICustomPatternSettings:
|
|
64
|
+
* type: object
|
|
65
|
+
* properties:
|
|
66
|
+
* behavior:
|
|
67
|
+
* $ref: '#/components/schemas/IRedactionBehavior'
|
|
68
|
+
* scope:
|
|
69
|
+
* $ref: '#/components/schemas/IRedactionScope'
|
|
70
|
+
* name:
|
|
71
|
+
* type: string
|
|
72
|
+
* description: Display name for the custom PII field type
|
|
73
|
+
* regex:
|
|
74
|
+
* type: string
|
|
75
|
+
* description: Regular expression pattern to match custom PII data (RE2 syntax)
|
|
76
|
+
* minLength: 1
|
|
77
|
+
* maxLength: 2000
|
|
78
|
+
* required: [behavior, scope, name, regex]
|
|
79
|
+
*
|
|
80
|
+
* IPiiDataRedactionSettings_2_0:
|
|
81
|
+
* type: object
|
|
82
|
+
* properties:
|
|
83
|
+
* emailAddress:
|
|
84
|
+
* $ref: '#/components/schemas/IPiiFieldSettings'
|
|
85
|
+
* phoneNumber:
|
|
86
|
+
* $ref: '#/components/schemas/IPiiFieldSettings'
|
|
87
|
+
* creditCard:
|
|
88
|
+
* $ref: '#/components/schemas/IPiiFieldSettings'
|
|
89
|
+
* ssn:
|
|
90
|
+
* $ref: '#/components/schemas/IPiiFieldSettings'
|
|
91
|
+
* ipAddressV4:
|
|
92
|
+
* $ref: '#/components/schemas/IPiiFieldSettings'
|
|
93
|
+
* ipAddressV6:
|
|
94
|
+
* $ref: '#/components/schemas/IPiiFieldSettings'
|
|
95
|
+
* customTypes:
|
|
96
|
+
* type: object
|
|
97
|
+
* additionalProperties:
|
|
98
|
+
* $ref: '#/components/schemas/ICustomPatternSettings'
|
|
99
|
+
* description: User-defined custom PII patterns with regex matching
|
|
100
|
+
* required: [emailAddress, phoneNumber, creditCard, ssn, ipAddressV4, ipAddressV6]
|
|
101
|
+
*/
|
|
102
|
+
var EPiiBehaviorType;
|
|
103
|
+
(function (EPiiBehaviorType) {
|
|
104
|
+
EPiiBehaviorType["PREDEFINED_ALIAS"] = "predefined-alias";
|
|
105
|
+
EPiiBehaviorType["CUSTOM_ALIAS"] = "custom-alias";
|
|
106
|
+
})(EPiiBehaviorType = exports.EPiiBehaviorType || (exports.EPiiBehaviorType = {}));
|
|
3
107
|
//# sourceMappingURL=IAgentSettings_2_0.js.map
|
package/build/shared/interfaces/restAPI/simulation/persona/IGeneratePersonaFromTranscriptRest_2_0.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* POST /testing/beta/personas/from-transcript
|
|
4
|
+
*
|
|
5
|
+
* Create a scenario draft by analyzing a conversation transcript. The system uses LLM to extract user intent,
|
|
6
|
+
* conversation goals, and user characteristics from the transcript, then generates an appropriate persona package.
|
|
7
|
+
*
|
|
8
|
+
* The endpoint supports:
|
|
9
|
+
* - Fetching transcript via sessionId from analytics service (RPC call)
|
|
10
|
+
* - Direct transcript content via transcriptContent
|
|
11
|
+
* - Optional flow context for enhanced persona generation
|
|
12
|
+
* - Content safety validation (warnings only, non-blocking)
|
|
13
|
+
*
|
|
14
|
+
* Priority: If both sessionId and transcriptContent are provided, sessionId takes precedence.
|
|
15
|
+
*
|
|
16
|
+
* operationId: createScenarioFromTranscript
|
|
17
|
+
* tags: Personas
|
|
18
|
+
*/
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
//# sourceMappingURL=IGeneratePersonaFromTranscriptRest_2_0.js.map
|
|
@@ -50,7 +50,8 @@ export function SimulationAPIGroup_2_0(instance) {
|
|
|
50
50
|
getPersonaOptions: (args, options) => GenericAPIFn("/testing/beta/personas/options", "POST", self)(args, options),
|
|
51
51
|
generatePersona: (args, options) => GenericAPIFn("/testing/beta/personas/generate", "POST", self)(args, options),
|
|
52
52
|
regeneratePersonaField: (args, options) => GenericAPIFn("/testing/beta/personas/regenerate-field", "POST", self)(args, options),
|
|
53
|
-
generateBulkPersona: (args, options) => GenericAPIFn("/testing/beta/personas/generate-bulk", "POST", self)(args, options)
|
|
53
|
+
generateBulkPersona: (args, options) => GenericAPIFn("/testing/beta/personas/generate-bulk", "POST", self)(args, options),
|
|
54
|
+
generatePersonaFromTranscript: (args, options) => GenericAPIFn("/testing/beta/personas/from-transcript", "POST", self)(args, options)
|
|
54
55
|
};
|
|
55
56
|
}
|
|
56
57
|
//# sourceMappingURL=SimulationAPIGroup_2_0.js.map
|
|
@@ -5,7 +5,9 @@ export const AZURE_OPEN_AI_OAUTH2_PROVIDER_CONNECTION = {
|
|
|
5
5
|
{ fieldName: "clientId", label: "UI__CONNECTION_EDITOR__FIELD_CLIENT_ID" },
|
|
6
6
|
{ fieldName: "clientSecret", label: "UI__CONNECTION_EDITOR__FIELD_CLIENT_SECRET" },
|
|
7
7
|
{ fieldName: "oauthUrl", label: "UI__CONNECTION_EDITOR__FIELD_OAUTH2_URL" },
|
|
8
|
-
{ fieldName: "scope", label: "UI__CONNECTION_EDITOR__FIELD_SCOPE" }
|
|
8
|
+
{ fieldName: "scope", label: "UI__CONNECTION_EDITOR__FIELD_SCOPE" },
|
|
9
|
+
{ fieldName: "additionalHeaderName", label: "UI__CONNECTION_EDITOR__FIELD_OAUTH2_ADDITIONAL_HEADER_NAME", required: false },
|
|
10
|
+
{ fieldName: "additionalHeaderValue", label: "UI__CONNECTION_EDITOR__FIELD_OAUTH2_ADDITIONAL_HEADER_VALUE", required: false }
|
|
9
11
|
]
|
|
10
12
|
};
|
|
11
13
|
//# sourceMappingURL=azureOpenAIProviderOauth2Connection.js.map
|
|
@@ -11,7 +11,7 @@ import { REGEX_SLOT_FILLER, EXECUTE_COGNIGY_NLU, ADD_LEXICON_KEYPHRASE, FUZZY_SE
|
|
|
11
11
|
import { KNOWLEDGE_SEARCH, KNOWLEDGE_SEARCH_V2, SEARCH_EXTRACT_OUTPUT } from "./knowledgeSearch";
|
|
12
12
|
import { CONTINUOUS_ASR, DTMF, HANG_UP, PLAY, TRANSFER_VOICE, SESSION_SPEECH_PARAMETERS, USER_INPUT_TIMEOUT, SEND_METADATA, BARGE_IN, MUTE_SPEECH_INPUT, } from "./voice";
|
|
13
13
|
import { ACTIVATE_PROFILE, COMPLETE_GOAL, DEACTIVATE_PROFILE, DELETE_PROFILE, MERGE_PROFILE, UPDATE_PROFILE, ADD_MEMORY, BLIND_MODE, OVERWRITE_ANALYTICS, SET_RATING, REQUEST_RATING, TRACK_GOAL, } from "./analytics";
|
|
14
|
-
import { HANDOVER, HANDOVER_V2, CHECK_AGENT_AVAILABILITY, HTTP_REQUEST, HTTP_CONNECTION_BASIC, HTTP_CONNECTION_APIKEYAUTHKEY, HTTP_CONNECTION_APIKEYXKEY, HTTP_CONNECTION_OAUTH2, JWT_SECRET_CONNECTION, TRIGGER_FUNCTION, ON_SCHEDULING_ERROR, ON_SCHEDULED, GPT_PROMPT, LLM_PROMPT_V2, LLM_PROMPT_DEFAULT, LLM_PROMPT_MCP_TOOL, LLM_PROMPT_TOOL, CLOSE_HANDOVER, HANDOVER_INACTIVITY_TIMER, GPT_CONVERSATION, GPT_CONVERSATION_SUMMARY, LLM_ENTITY_EXTRACT, AI_AGENT_JOB, AI_AGENT_JOB_DEFAULT, AI_AGENT_JOB_TOOL, AI_AGENT_JOB_MCP_TOOL, AI_AGENT_JOB_CALL_MCP_TOOL, AI_AGENT_TOOL_ANSWER, AI_AGENT_HANDOVER, LIVE_AGENT_CONNECTION, RINGCENTRAL_ENGAGE_CONNECTION, CHATWOOT_CONNECTION, EIGHT_BY_EIGHT_CONNECTION, GENESYS_CLOUD_CONNECTION, GENESYS_CLOUD_CONNECTION_OM, LLM_MODERATE, NICECXONEAAH_AUTHENTICATION_CONNECTION, LOAD_AI_AGENT, AIOPS_CENTER_WEBHOOKS_CONNECTION } from "./service";
|
|
14
|
+
import { HANDOVER, HANDOVER_V2, CHECK_AGENT_AVAILABILITY, HTTP_REQUEST, HTTP_CONNECTION_BASIC, HTTP_CONNECTION_APIKEYAUTHKEY, HTTP_CONNECTION_APIKEYXKEY, HTTP_CONNECTION_OAUTH2, JWT_SECRET_CONNECTION, TRIGGER_FUNCTION, ON_SCHEDULING_ERROR, ON_SCHEDULED, GPT_PROMPT, LLM_PROMPT_V2, LLM_PROMPT_DEFAULT, LLM_PROMPT_MCP_TOOL, LLM_PROMPT_TOOL, CLOSE_HANDOVER, HANDOVER_INACTIVITY_TIMER, GPT_CONVERSATION, GPT_CONVERSATION_SUMMARY, LLM_ENTITY_EXTRACT, AI_AGENT_JOB, AI_AGENT_JOB_DEFAULT, AI_AGENT_JOB_TOOL, AI_AGENT_JOB_MCP_TOOL, AI_AGENT_JOB_CALL_MCP_TOOL, AI_AGENT_TOOL_ANSWER, KNOWLEDGE_TOOL, AI_AGENT_HANDOVER, LIVE_AGENT_CONNECTION, RINGCENTRAL_ENGAGE_CONNECTION, CHATWOOT_CONNECTION, EIGHT_BY_EIGHT_CONNECTION, GENESYS_CLOUD_CONNECTION, GENESYS_CLOUD_CONNECTION_OM, LLM_MODERATE, NICECXONEAAH_AUTHENTICATION_CONNECTION, LOAD_AI_AGENT, AIOPS_CENTER_WEBHOOKS_CONNECTION } from "./service";
|
|
15
15
|
import { INIT_APP_SESSION, GET_APP_SESSION_PIN, SET_HTML_APP_STATE, SET_ADAPTIVE_CARD_APP_STATE, } from "./apps";
|
|
16
16
|
import { SET_IFRAME_TILE, SET_HTML_TILE, SEND_TILE_DATA, SET_SECURE_FORMS_TILE, SET_ADAPTIVE_CARD_TILE, SET_AGENT_ASSIST_GRID, NEXT_ACTION_ASSIST, SENTIMENT_ASSIST, TRANSCRIPT_ASSIST, IDENTITY_ASSIST, KNOWLEDGE_ASSIST, } from "./agentAssist";
|
|
17
17
|
import { ASSIST_INFO } from "./liveAgent";
|
|
@@ -146,6 +146,7 @@ if (process.env.DISABLE_FEATURE_TRANSCRIPT_MANAGER !== "true") {
|
|
|
146
146
|
nodes.push(AI_AGENT_JOB_MCP_TOOL);
|
|
147
147
|
nodes.push(AI_AGENT_JOB_CALL_MCP_TOOL);
|
|
148
148
|
nodes.push(AI_AGENT_TOOL_ANSWER);
|
|
149
|
+
nodes.push(KNOWLEDGE_TOOL);
|
|
149
150
|
nodes.push(AI_AGENT_HANDOVER);
|
|
150
151
|
nodes.push(LOAD_AI_AGENT);
|
|
151
152
|
}
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
2
|
+
/* Custom modules */
|
|
3
|
+
import { createNodeDescriptor } from "../../../createNodeDescriptor";
|
|
4
|
+
import { TranscriptEntryType, TranscriptRole } from "../../../../interfaces/transcripts/transcripts";
|
|
5
|
+
export const KNOWLEDGE_TOOL = createNodeDescriptor({
|
|
6
|
+
type: "knowledgeTool",
|
|
7
|
+
defaultLabel: "Knowledge Tool",
|
|
8
|
+
parentType: ["aiAgentJob", "llmPromptV2"],
|
|
9
|
+
constraints: {
|
|
10
|
+
editable: true,
|
|
11
|
+
deletable: true,
|
|
12
|
+
collapsable: true,
|
|
13
|
+
creatable: true,
|
|
14
|
+
movable: true,
|
|
15
|
+
placement: {
|
|
16
|
+
predecessor: {
|
|
17
|
+
whitelist: []
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
childFlowCreatable: false
|
|
21
|
+
},
|
|
22
|
+
behavior: {
|
|
23
|
+
stopping: true
|
|
24
|
+
},
|
|
25
|
+
preview: {
|
|
26
|
+
type: "text",
|
|
27
|
+
key: "toolId"
|
|
28
|
+
},
|
|
29
|
+
fields: [
|
|
30
|
+
{
|
|
31
|
+
key: "knowledgeStoreId",
|
|
32
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_KNOWLEDGE_TOOL__FIELDS__KNOWLEDGE_STORE__LABEL",
|
|
33
|
+
type: "knowledgeStoreSelect",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
key: "toolId",
|
|
37
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__TOOL_ID__LABEL",
|
|
38
|
+
description: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__TOOL_ID__DESCRIPTION",
|
|
39
|
+
type: "cognigyLLMText",
|
|
40
|
+
defaultValue: "retrieve_knowledge_and_data",
|
|
41
|
+
params: {
|
|
42
|
+
required: true,
|
|
43
|
+
rows: 1,
|
|
44
|
+
multiline: false,
|
|
45
|
+
maxLength: 64,
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
key: "description",
|
|
50
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__DESCRIPTION__LABEL",
|
|
51
|
+
description: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__DESCRIPTION__DESCRIPTION",
|
|
52
|
+
type: "cognigyLLMText",
|
|
53
|
+
defaultValue: "Find the answer to general prompts or questions searching the attached data sources. It focuses exclusively on a knowledge search and does not execute tasks like small talk, calculations, or script running.",
|
|
54
|
+
params: {
|
|
55
|
+
required: true,
|
|
56
|
+
rows: 5,
|
|
57
|
+
multiline: true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: "parameters",
|
|
62
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__PARAMETERS__LABEL",
|
|
63
|
+
description: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__PARAMETERS__DESCRIPTION",
|
|
64
|
+
type: "toolParameters",
|
|
65
|
+
defaultValue: `{
|
|
66
|
+
"type": "object",
|
|
67
|
+
"properties": {
|
|
68
|
+
"generated_prompt": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"description": "Generated question including the context of the conversation (I want to know...)."
|
|
71
|
+
},
|
|
72
|
+
"generated_buffer_phrase": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"description": "A generated delay or stalling phrase. Consider the context. Adapt to your speech style and language."
|
|
75
|
+
},
|
|
76
|
+
},
|
|
77
|
+
"required": ["generated_prompt", "generated_buffer_phrase"],
|
|
78
|
+
"additionalProperties": false
|
|
79
|
+
}`,
|
|
80
|
+
params: {
|
|
81
|
+
required: false,
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
key: "debugMessage",
|
|
86
|
+
type: "toggle",
|
|
87
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__DEBUG_MESSAGE__LABEL",
|
|
88
|
+
description: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__DEBUG_MESSAGE__DESCRIPTION",
|
|
89
|
+
defaultValue: true,
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
key: "condition",
|
|
93
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__CONDITION__LABEL",
|
|
94
|
+
description: "UI__NODE_EDITOR__SERVICE__AI_AGENT_TOOL__FIELDS__CONDITION__DESCRIPTION",
|
|
95
|
+
type: "cognigyText",
|
|
96
|
+
defaultValue: "",
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
key: "topK",
|
|
100
|
+
type: "slider",
|
|
101
|
+
label: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__TOP_K__LABEL",
|
|
102
|
+
description: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__TOP_K__DESCRIPTION",
|
|
103
|
+
defaultValue: 5,
|
|
104
|
+
params: {
|
|
105
|
+
min: 1,
|
|
106
|
+
max: 10
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
key: "storeLocation",
|
|
111
|
+
type: "select",
|
|
112
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_KNOWLEDGE_TOOL__FIELDS__STORE_LOCATION__LABEL",
|
|
113
|
+
params: {
|
|
114
|
+
options: [
|
|
115
|
+
{
|
|
116
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_KNOWLEDGE_TOOL__FIELDS__STORE_LOCATION__OPTIONS__NONE__LABEL",
|
|
117
|
+
value: "none"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_KNOWLEDGE_TOOL__FIELDS__STORE_LOCATION__OPTIONS__INPUT__LABEL",
|
|
121
|
+
value: "input"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_KNOWLEDGE_TOOL__FIELDS__STORE_LOCATION__OPTIONS__CONTEXT__LABEL",
|
|
125
|
+
value: "context"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
defaultValue: "none"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
key: "storeLocationInputKey",
|
|
133
|
+
type: "cognigyText",
|
|
134
|
+
label: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__INPUT_KEY__LABEL",
|
|
135
|
+
description: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__INPUT_KEY__DESCRIPTION",
|
|
136
|
+
defaultValue: "knowledgeSearch",
|
|
137
|
+
condition: {
|
|
138
|
+
key: "storeLocation",
|
|
139
|
+
value: "input"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
key: "storeLocationContextKey",
|
|
144
|
+
type: "cognigyText",
|
|
145
|
+
label: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__CONTEXT_KEY__LABEL",
|
|
146
|
+
description: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__CONTEXT_KEY__DESCRIPTION",
|
|
147
|
+
defaultValue: "knowledgeSearch",
|
|
148
|
+
condition: {
|
|
149
|
+
key: "storeLocation",
|
|
150
|
+
value: "context"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
key: "sourceTags",
|
|
155
|
+
type: "knowledgeSourceTags",
|
|
156
|
+
label: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__SOURCE_TAGS__LABEL",
|
|
157
|
+
description: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__SOURCE_TAGS__DESCRIPTION",
|
|
158
|
+
params: {
|
|
159
|
+
tagLimit: 5
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
key: "sourceTagsFilterOp",
|
|
164
|
+
type: "select",
|
|
165
|
+
label: "UI__NODE_EDITOR__KNOWLEDGE_SEARCH__SOURCE_TAGS_FILTER_OP__LABEL",
|
|
166
|
+
description: "UI__NODE_EDITOR__SEARCH_EXTRACT_OUTPUT__FIELDS__SOURCE_TAGS_FILTER_OP__DESCRIPTION",
|
|
167
|
+
defaultValue: "and",
|
|
168
|
+
params: {
|
|
169
|
+
options: [
|
|
170
|
+
{
|
|
171
|
+
label: "UI__NODE_EDITOR__SEARCH_EXTRACT_OUTPUT__FIELDS__SOURCE_TAGS_FILTER_OP__OPTIONS__AND__LABEL",
|
|
172
|
+
value: "and"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
label: "UI__NODE_EDITOR__SEARCH_EXTRACT_OUTPUT__FIELDS__SOURCE_TAGS_FILTER_OP__OPTIONS__OR__LABEL",
|
|
176
|
+
value: "or"
|
|
177
|
+
},
|
|
178
|
+
]
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
],
|
|
182
|
+
sections: [
|
|
183
|
+
{
|
|
184
|
+
key: "debugging",
|
|
185
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_JOB__SECTIONS__DEBUG_SETTINGS__LABEL",
|
|
186
|
+
defaultCollapsed: true,
|
|
187
|
+
fields: [
|
|
188
|
+
"debugMessage",
|
|
189
|
+
],
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
key: "advanced",
|
|
193
|
+
label: "UI__NODE_EDITOR__SERVICE__AI_AGENT_JOB__SECTIONS__ADVANCED__LABEL",
|
|
194
|
+
defaultCollapsed: true,
|
|
195
|
+
fields: [
|
|
196
|
+
"topK",
|
|
197
|
+
"storeLocation",
|
|
198
|
+
"storeLocationInputKey",
|
|
199
|
+
"storeLocationContextKey",
|
|
200
|
+
"sourceTags",
|
|
201
|
+
"sourceTagsFilterOp",
|
|
202
|
+
"condition",
|
|
203
|
+
],
|
|
204
|
+
},
|
|
205
|
+
],
|
|
206
|
+
form: [
|
|
207
|
+
{ type: "field", key: "knowledgeStoreId" },
|
|
208
|
+
{ type: "field", key: "toolId" },
|
|
209
|
+
{ type: "field", key: "description" },
|
|
210
|
+
{ type: "section", key: "debugging" },
|
|
211
|
+
{ type: "section", key: "advanced" },
|
|
212
|
+
],
|
|
213
|
+
appearance: {
|
|
214
|
+
color: "white",
|
|
215
|
+
textColor: "#252525",
|
|
216
|
+
variant: "mini",
|
|
217
|
+
},
|
|
218
|
+
function: ({ cognigy, config, nodeId: thisNodeId }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
219
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
220
|
+
const { api, context, input } = cognigy;
|
|
221
|
+
const { knowledgeStoreId, debugMessage, topK, storeLocation, storeLocationInputKey, storeLocationContextKey, sourceTags, sourceTagsFilterOp, } = config;
|
|
222
|
+
const sessionState = yield api.loadSessionState();
|
|
223
|
+
const toolCall = (_a = sessionState.lastToolCall) === null || _a === void 0 ? void 0 : _a.toolCall;
|
|
224
|
+
const aiAgentJobNode = (_b = sessionState.lastToolCall) === null || _b === void 0 ? void 0 : _b.aiAgentJobNode;
|
|
225
|
+
if (!(toolCall === null || toolCall === void 0 ? void 0 : toolCall.id)) {
|
|
226
|
+
(_c = api.logDebugError) === null || _c === void 0 ? void 0 : _c.call(api, "UI__DEBUG_MODE__AI_AGENT_ANSWER__ERROR__MESSAGE");
|
|
227
|
+
}
|
|
228
|
+
if (toolCall && aiAgentJobNode && knowledgeStoreId && (input.text || ((_e = (_d = toolCall === null || toolCall === void 0 ? void 0 : toolCall.function) === null || _d === void 0 ? void 0 : _d.arguments) === null || _e === void 0 ? void 0 : _e.generated_prompt))) {
|
|
229
|
+
if (!((_f = api.checkThink) === null || _f === void 0 ? void 0 : _f.call(api, thisNodeId))) {
|
|
230
|
+
let query = ((_h = (_g = toolCall === null || toolCall === void 0 ? void 0 : toolCall.function) === null || _g === void 0 ? void 0 : _g.arguments) === null || _h === void 0 ? void 0 : _h.generated_prompt) || input.text;
|
|
231
|
+
const data = {
|
|
232
|
+
language: input.language,
|
|
233
|
+
query,
|
|
234
|
+
topK,
|
|
235
|
+
traceId: input.traceId,
|
|
236
|
+
disableSensitiveLogging: false,
|
|
237
|
+
knowledgeStoreIds: [knowledgeStoreId],
|
|
238
|
+
};
|
|
239
|
+
const generated_buffer_phrase = (_k = (_j = toolCall === null || toolCall === void 0 ? void 0 : toolCall.function) === null || _j === void 0 ? void 0 : _j.arguments) === null || _k === void 0 ? void 0 : _k.generated_buffer_phrase;
|
|
240
|
+
if (generated_buffer_phrase) {
|
|
241
|
+
// output the generated buffer phrase. Don't add it to the transcript, else the LLM will repeat it next time.
|
|
242
|
+
yield ((_l = api.output) === null || _l === void 0 ? void 0 : _l.call(api, generated_buffer_phrase, {
|
|
243
|
+
_cognigy: {
|
|
244
|
+
_preventTranscript: true
|
|
245
|
+
}
|
|
246
|
+
}));
|
|
247
|
+
}
|
|
248
|
+
if (sourceTags && sourceTags.length > 0) {
|
|
249
|
+
// convert each knowledgeSourceTag to a string
|
|
250
|
+
sourceTags.forEach((tag, index) => {
|
|
251
|
+
sourceTags[index] = tag.toString();
|
|
252
|
+
});
|
|
253
|
+
data.tagsData = {
|
|
254
|
+
tags: sourceTags,
|
|
255
|
+
op: sourceTagsFilterOp
|
|
256
|
+
};
|
|
257
|
+
}
|
|
258
|
+
const knowledgeSearchResponse = yield api.knowledgeSearch(data);
|
|
259
|
+
// Handle possible response errors
|
|
260
|
+
if ((knowledgeSearchResponse === null || knowledgeSearchResponse === void 0 ? void 0 : knowledgeSearchResponse.status) !== "success") {
|
|
261
|
+
const errorMessage = (knowledgeSearchResponse === null || knowledgeSearchResponse === void 0 ? void 0 : knowledgeSearchResponse.error) || "empty";
|
|
262
|
+
throw new Error(`Error while performing knowledge search. Remote returned error: ${errorMessage}`);
|
|
263
|
+
}
|
|
264
|
+
// Store full response data in input or context
|
|
265
|
+
if (storeLocation === "input" && storeLocationInputKey) {
|
|
266
|
+
input[storeLocationInputKey] = knowledgeSearchResponse;
|
|
267
|
+
}
|
|
268
|
+
else if (storeLocation === "context" && storeLocationContextKey) {
|
|
269
|
+
context[storeLocationContextKey] = knowledgeSearchResponse;
|
|
270
|
+
}
|
|
271
|
+
const knowledgeSearchResponseData = knowledgeSearchResponse.data;
|
|
272
|
+
// Optional Debug Message of Knowledge Search Results
|
|
273
|
+
if (debugMessage) {
|
|
274
|
+
const messageLines = [];
|
|
275
|
+
if (query) {
|
|
276
|
+
messageLines.push(`\n<b>UI__DEBUG_MODE__AI_AGENT_JOB__KNOWLEDGE_SEARCH__SEARCH_PROMPT</b> ${query}`);
|
|
277
|
+
}
|
|
278
|
+
if ((_m = knowledgeSearchResponseData === null || knowledgeSearchResponseData === void 0 ? void 0 : knowledgeSearchResponseData.topK) === null || _m === void 0 ? void 0 : _m.length) {
|
|
279
|
+
knowledgeSearchResponseData === null || knowledgeSearchResponseData === void 0 ? void 0 : knowledgeSearchResponseData.topK.forEach((result, index) => {
|
|
280
|
+
var _a;
|
|
281
|
+
messageLines.push(`\nTop ${index + 1}:`);
|
|
282
|
+
messageLines.push(`Distance: ${result.distance}`);
|
|
283
|
+
messageLines.push(`Source Name: ${(_a = result.sourceMetaData) === null || _a === void 0 ? void 0 : _a.sourceName}`);
|
|
284
|
+
messageLines.push(`Text: ${result.text}`);
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
else {
|
|
288
|
+
messageLines.push("UI__DEBUG_MODE__AI_AGENT_JOB__KNOWLEDGE_SEARCH__NO_RESULTS");
|
|
289
|
+
}
|
|
290
|
+
(_o = api.logDebugMessage) === null || _o === void 0 ? void 0 : _o.call(api, messageLines.join("\n"), "UI__DEBUG_MODE__AI_AGENT_JOB__KNOWLEDGE_SEARCH__HEADER");
|
|
291
|
+
}
|
|
292
|
+
const { flow, node } = aiAgentJobNode;
|
|
293
|
+
if (flow && node) {
|
|
294
|
+
// Add Tool Call Message to Transcript
|
|
295
|
+
const toolCallTranscriptStep = {
|
|
296
|
+
role: TranscriptRole.ASSISTANT,
|
|
297
|
+
type: TranscriptEntryType.TOOL_CALL,
|
|
298
|
+
source: "system",
|
|
299
|
+
payload: {
|
|
300
|
+
name: toolCall.function.name,
|
|
301
|
+
id: toolCall.id,
|
|
302
|
+
input: toolCall.function.arguments,
|
|
303
|
+
}
|
|
304
|
+
};
|
|
305
|
+
yield api.addTranscriptStep(toolCallTranscriptStep);
|
|
306
|
+
// Add Tool Answer Message to Transcript
|
|
307
|
+
const toolAnswer = {
|
|
308
|
+
role: TranscriptRole.TOOL,
|
|
309
|
+
type: TranscriptEntryType.TOOL_ANSWER,
|
|
310
|
+
source: "system",
|
|
311
|
+
payload: {
|
|
312
|
+
toolCallId: toolCall.id,
|
|
313
|
+
name: toolCall.function.name,
|
|
314
|
+
content: `We have this context as answer from the knowledge source:\n${JSON.stringify(knowledgeSearchResponseData)}`,
|
|
315
|
+
}
|
|
316
|
+
};
|
|
317
|
+
yield api.addTranscriptStep(toolAnswer);
|
|
318
|
+
api.resetNextNodes();
|
|
319
|
+
// remove the call from the session state, because the call has been answered
|
|
320
|
+
api.updateSessionStateValues({
|
|
321
|
+
lastToolCall: undefined
|
|
322
|
+
});
|
|
323
|
+
yield api.executeFlow({
|
|
324
|
+
flowNode: {
|
|
325
|
+
flow,
|
|
326
|
+
node,
|
|
327
|
+
},
|
|
328
|
+
absorbContext: true,
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
else {
|
|
333
|
+
throw new Error("Infinite Loop Detected");
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
})
|
|
337
|
+
});
|
|
338
|
+
//# sourceMappingURL=knowledgeTool.js.map
|