chatbot-agentic 1.0.21 → 1.0.23

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.
@@ -20,6 +20,11 @@ export declare const AWS: {
20
20
  AgentRuntime: {
21
21
  invokeAgent: (data: import("@aws-sdk/client-bedrock-agent-runtime").InvokeAgentCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeAgentCommandOutput>;
22
22
  invokeFlow: (data: import("@aws-sdk/client-bedrock-agent-runtime").InvokeFlowCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeFlowCommandOutput>;
23
+ getSession: (data: import("@aws-sdk/client-bedrock-agent-runtime").GetSessionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetSessionCommandOutput>;
24
+ startFlowExecution: (data: import("@aws-sdk/client-bedrock-agent-runtime").StartFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").StartFlowExecutionCommandOutput>;
25
+ getFlowExecution: (data: import("@aws-sdk/client-bedrock-agent-runtime").GetFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetFlowExecutionCommandOutput>;
26
+ listFlowExecutionsCommand: (data: import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionsCommandOutput>;
27
+ listFlowExecutionEvents: (data: import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionEventsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionEventsCommandOutput>;
23
28
  };
24
29
  BedrockRuntime: {
25
30
  invokeModel: (data: import("@aws-sdk/client-bedrock-runtime").InvokeModelCommandInput) => Promise<import("@aws-sdk/client-bedrock-runtime").InvokeModelCommandOutput>;
@@ -1,5 +1,10 @@
1
- import { InvokeAgentCommandInput, InvokeFlowCommandInput } from "@aws-sdk/client-bedrock-agent-runtime";
1
+ import { GetFlowExecutionCommandInput, GetSessionCommandInput, InvokeAgentCommandInput, InvokeFlowCommandInput, ListFlowExecutionEventsCommandInput, ListFlowExecutionsCommandInput, StartFlowExecutionCommandInput } from "@aws-sdk/client-bedrock-agent-runtime";
2
2
  export declare const AgentRuntime: {
3
3
  invokeAgent: (data: InvokeAgentCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeAgentCommandOutput>;
4
4
  invokeFlow: (data: InvokeFlowCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeFlowCommandOutput>;
5
+ getSession: (data: GetSessionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetSessionCommandOutput>;
6
+ startFlowExecution: (data: StartFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").StartFlowExecutionCommandOutput>;
7
+ getFlowExecution: (data: GetFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetFlowExecutionCommandOutput>;
8
+ listFlowExecutionsCommand: (data: ListFlowExecutionsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionsCommandOutput>;
9
+ listFlowExecutionEvents: (data: ListFlowExecutionEventsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionEventsCommandOutput>;
5
10
  };
@@ -37,8 +37,93 @@ const invokeFlow = async (data) => {
37
37
  throw error;
38
38
  }
39
39
  };
40
+ /**
41
+ * This is used to invoke flow
42
+ * @param command
43
+ * @returns
44
+ */
45
+ const getSession = async (data) => {
46
+ try {
47
+ const command = new client_bedrock_agent_runtime_1.GetSessionCommand(data);
48
+ const response = await client.send(command);
49
+ return response;
50
+ }
51
+ catch (error) {
52
+ console.info(`error occured while fetching invoke flow`);
53
+ throw error;
54
+ }
55
+ };
56
+ /**
57
+ * This is used to start the execution flow
58
+ * @param command
59
+ * @returns
60
+ */
61
+ const startFlowExecution = async (data) => {
62
+ try {
63
+ const command = new client_bedrock_agent_runtime_1.StartFlowExecutionCommand(data);
64
+ const response = await client.send(command);
65
+ return response;
66
+ }
67
+ catch (error) {
68
+ console.info(`error occured while start Execution flow`);
69
+ throw error;
70
+ }
71
+ };
72
+ /**
73
+ * This is used to get the execution flow
74
+ * @param command
75
+ * @returns
76
+ */
77
+ const getFlowExecution = async (data) => {
78
+ try {
79
+ const command = new client_bedrock_agent_runtime_1.GetFlowExecutionCommand(data);
80
+ const response = await client.send(command);
81
+ return response;
82
+ }
83
+ catch (error) {
84
+ console.info(`error occured while get Execution flow`);
85
+ throw error;
86
+ }
87
+ };
88
+ /**
89
+ * This is used to get the list of execution flow
90
+ * @param command
91
+ * @returns
92
+ */
93
+ const listFlowExecutionsCommand = async (data) => {
94
+ try {
95
+ const command = new client_bedrock_agent_runtime_1.ListFlowExecutionsCommand(data);
96
+ const response = await client.send(command);
97
+ return response;
98
+ }
99
+ catch (error) {
100
+ console.info(`error occured while get list of executions flow`);
101
+ throw error;
102
+ }
103
+ };
104
+ /**
105
+ * This is used to get the list of execution event flow
106
+ * @param command
107
+ * @returns
108
+ */
109
+ const listFlowExecutionEvents = async (data) => {
110
+ try {
111
+ const command = new client_bedrock_agent_runtime_1.ListFlowExecutionEventsCommand(data);
112
+ const response = await client.send(command);
113
+ return response;
114
+ }
115
+ catch (error) {
116
+ console.info(`error occured while get list of executions event flow`);
117
+ throw error;
118
+ }
119
+ };
40
120
  exports.AgentRuntime = {
41
121
  invokeAgent,
42
- invokeFlow
122
+ invokeFlow,
123
+ getSession,
124
+ startFlowExecution,
125
+ getFlowExecution,
126
+ listFlowExecutionsCommand,
127
+ listFlowExecutionEvents
43
128
  };
44
129
  //# sourceMappingURL=AWSBedrockAgentRuntime.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"AWSBedrockAgentRuntime.js","sourceRoot":"","sources":["../../../../aws/services/AWSBedrockAgentRuntime.ts"],"names":[],"mappings":";;;AAAA,wFAA0K;AAE1K,MAAM,WAAW,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,IAAI,MAAM,CAAC,CAAC;AAC7D,MAAM,SAAS,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,kBAAkB,IAAI,WAAW,CAAC,CAAC;AAElE,MAAM,MAAM,GAAG,IAAI,wDAAyB,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;AAEpE;;;;GAIG;AACH,MAAM,WAAW,GAAG,KAAK,EAAE,IAA6B,EAAE,EAAE;IAC1D,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,iDAAkB,CAAC,IAAI,CAAC,CAAC;QAC7C,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,OAAO,QAAQ,CAAC;IAClB,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,OAAO,CAAC,IAAI,CAAC,2CAA2C,CAAC,CAAC;QAC1D,MAAM,KAAK,CAAC;IACd,CAAC;AACH,CAAC,CAAA;AAGD;;;;GAIG;AACH,MAAM,UAAU,GAAG,KAAK,EAAE,IAA4B,EAAE,EAAE;IACxD,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,gDAAiB,CAAC,IAAI,CAAC,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,OAAO,QAAQ,CAAC;IAClB,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,OAAO,CAAC,IAAI,CAAC,0CAA0C,CAAC,CAAC;QACzD,MAAM,KAAK,CAAC;IACd,CAAC;AACH,CAAC,CAAA;AAIY,QAAA,YAAY,GAAG;IAC1B,WAAW;IACX,UAAU;CACX,CAAA"}
1
+ {"version":3,"file":"AWSBedrockAgentRuntime.js","sourceRoot":"","sources":["../../../../aws/services/AWSBedrockAgentRuntime.ts"],"names":[],"mappings":"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"}
@@ -20,6 +20,11 @@ export declare const AWS: {
20
20
  AgentRuntime: {
21
21
  invokeAgent: (data: import("@aws-sdk/client-bedrock-agent-runtime").InvokeAgentCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeAgentCommandOutput>;
22
22
  invokeFlow: (data: import("@aws-sdk/client-bedrock-agent-runtime").InvokeFlowCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeFlowCommandOutput>;
23
+ getSession: (data: import("@aws-sdk/client-bedrock-agent-runtime").GetSessionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetSessionCommandOutput>;
24
+ startFlowExecution: (data: import("@aws-sdk/client-bedrock-agent-runtime").StartFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").StartFlowExecutionCommandOutput>;
25
+ getFlowExecution: (data: import("@aws-sdk/client-bedrock-agent-runtime").GetFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetFlowExecutionCommandOutput>;
26
+ listFlowExecutionsCommand: (data: import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionsCommandOutput>;
27
+ listFlowExecutionEvents: (data: import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionEventsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionEventsCommandOutput>;
23
28
  };
24
29
  BedrockRuntime: {
25
30
  invokeModel: (data: import("@aws-sdk/client-bedrock-runtime").InvokeModelCommandInput) => Promise<import("@aws-sdk/client-bedrock-runtime").InvokeModelCommandOutput>;
@@ -1,5 +1,10 @@
1
- import { InvokeAgentCommandInput, InvokeFlowCommandInput } from "@aws-sdk/client-bedrock-agent-runtime";
1
+ import { GetFlowExecutionCommandInput, GetSessionCommandInput, InvokeAgentCommandInput, InvokeFlowCommandInput, ListFlowExecutionEventsCommandInput, ListFlowExecutionsCommandInput, StartFlowExecutionCommandInput } from "@aws-sdk/client-bedrock-agent-runtime";
2
2
  export declare const AgentRuntime: {
3
3
  invokeAgent: (data: InvokeAgentCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeAgentCommandOutput>;
4
4
  invokeFlow: (data: InvokeFlowCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").InvokeFlowCommandOutput>;
5
+ getSession: (data: GetSessionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetSessionCommandOutput>;
6
+ startFlowExecution: (data: StartFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").StartFlowExecutionCommandOutput>;
7
+ getFlowExecution: (data: GetFlowExecutionCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").GetFlowExecutionCommandOutput>;
8
+ listFlowExecutionsCommand: (data: ListFlowExecutionsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionsCommandOutput>;
9
+ listFlowExecutionEvents: (data: ListFlowExecutionEventsCommandInput) => Promise<import("@aws-sdk/client-bedrock-agent-runtime").ListFlowExecutionEventsCommandOutput>;
5
10
  };
@@ -7,7 +7,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
7
7
  step((generator = generator.apply(thisArg, _arguments || [])).next());
8
8
  });
9
9
  };
10
- import { BedrockAgentRuntimeClient, InvokeAgentCommand, InvokeFlowCommand } from "@aws-sdk/client-bedrock-agent-runtime";
10
+ import { BedrockAgentRuntimeClient, GetFlowExecutionCommand, GetSessionCommand, InvokeAgentCommand, InvokeFlowCommand, ListFlowExecutionEventsCommand, ListFlowExecutionsCommand, StartFlowExecutionCommand } from "@aws-sdk/client-bedrock-agent-runtime";
11
11
  const environment = (process.env.NODE_ENVIRONMENT || 'Test');
12
12
  const awsRegion = (process.env.AWS_DEFAULT_REGION || 'us-east-1');
13
13
  const client = new BedrockAgentRuntimeClient({ region: awsRegion });
@@ -43,8 +43,93 @@ const invokeFlow = (data) => __awaiter(void 0, void 0, void 0, function* () {
43
43
  throw error;
44
44
  }
45
45
  });
46
+ /**
47
+ * This is used to invoke flow
48
+ * @param command
49
+ * @returns
50
+ */
51
+ const getSession = (data) => __awaiter(void 0, void 0, void 0, function* () {
52
+ try {
53
+ const command = new GetSessionCommand(data);
54
+ const response = yield client.send(command);
55
+ return response;
56
+ }
57
+ catch (error) {
58
+ console.info(`error occured while fetching invoke flow`);
59
+ throw error;
60
+ }
61
+ });
62
+ /**
63
+ * This is used to start the execution flow
64
+ * @param command
65
+ * @returns
66
+ */
67
+ const startFlowExecution = (data) => __awaiter(void 0, void 0, void 0, function* () {
68
+ try {
69
+ const command = new StartFlowExecutionCommand(data);
70
+ const response = yield client.send(command);
71
+ return response;
72
+ }
73
+ catch (error) {
74
+ console.info(`error occured while start Execution flow`);
75
+ throw error;
76
+ }
77
+ });
78
+ /**
79
+ * This is used to get the execution flow
80
+ * @param command
81
+ * @returns
82
+ */
83
+ const getFlowExecution = (data) => __awaiter(void 0, void 0, void 0, function* () {
84
+ try {
85
+ const command = new GetFlowExecutionCommand(data);
86
+ const response = yield client.send(command);
87
+ return response;
88
+ }
89
+ catch (error) {
90
+ console.info(`error occured while get Execution flow`);
91
+ throw error;
92
+ }
93
+ });
94
+ /**
95
+ * This is used to get the list of execution flow
96
+ * @param command
97
+ * @returns
98
+ */
99
+ const listFlowExecutionsCommand = (data) => __awaiter(void 0, void 0, void 0, function* () {
100
+ try {
101
+ const command = new ListFlowExecutionsCommand(data);
102
+ const response = yield client.send(command);
103
+ return response;
104
+ }
105
+ catch (error) {
106
+ console.info(`error occured while get list of executions flow`);
107
+ throw error;
108
+ }
109
+ });
110
+ /**
111
+ * This is used to get the list of execution event flow
112
+ * @param command
113
+ * @returns
114
+ */
115
+ const listFlowExecutionEvents = (data) => __awaiter(void 0, void 0, void 0, function* () {
116
+ try {
117
+ const command = new ListFlowExecutionEventsCommand(data);
118
+ const response = yield client.send(command);
119
+ return response;
120
+ }
121
+ catch (error) {
122
+ console.info(`error occured while get list of executions event flow`);
123
+ throw error;
124
+ }
125
+ });
46
126
  export const AgentRuntime = {
47
127
  invokeAgent,
48
- invokeFlow
128
+ invokeFlow,
129
+ getSession,
130
+ startFlowExecution,
131
+ getFlowExecution,
132
+ listFlowExecutionsCommand,
133
+ listFlowExecutionEvents
49
134
  };
50
135
  //# sourceMappingURL=AWSBedrockAgentRuntime.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"AWSBedrockAgentRuntime.js","sourceRoot":"","sources":["../../../../aws/services/AWSBedrockAgentRuntime.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,yBAAyB,EAAE,kBAAkB,EAA2B,iBAAiB,EAA0B,MAAM,uCAAuC,CAAC;AAE1K,MAAM,WAAW,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,IAAI,MAAM,CAAC,CAAC;AAC7D,MAAM,SAAS,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,kBAAkB,IAAI,WAAW,CAAC,CAAC;AAElE,MAAM,MAAM,GAAG,IAAI,yBAAyB,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;AAEpE;;;;GAIG;AACH,MAAM,WAAW,GAAG,CAAO,IAA6B,EAAE,EAAE;IAC1D,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,kBAAkB,CAAC,IAAI,CAAC,CAAC;QAC7C,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,OAAO,QAAQ,CAAC;IAClB,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,OAAO,CAAC,IAAI,CAAC,2CAA2C,CAAC,CAAC;QAC1D,MAAM,KAAK,CAAC;IACd,CAAC;AACH,CAAC,CAAA,CAAA;AAGD;;;;GAIG;AACH,MAAM,UAAU,GAAG,CAAO,IAA4B,EAAE,EAAE;IACxD,IAAI,CAAC;QACH,MAAM,OAAO,GAAG,IAAI,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAC5C,MAAM,QAAQ,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC5C,OAAO,QAAQ,CAAC;IAClB,CAAC;IAAC,OAAO,KAAU,EAAE,CAAC;QACpB,OAAO,CAAC,IAAI,CAAC,0CAA0C,CAAC,CAAC;QACzD,MAAM,KAAK,CAAC;IACd,CAAC;AACH,CAAC,CAAA,CAAA;AAID,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,WAAW;IACX,UAAU;CACX,CAAA"}
1
+ {"version":3,"file":"AWSBedrockAgentRuntime.js","sourceRoot":"","sources":["../../../../aws/services/AWSBedrockAgentRuntime.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatbot-agentic",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",