chatbot-lex-design-builder 2.0.17 → 2.0.18
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/cjs/agentic/nodes/agent-schema.d.ts +57 -0
- package/dist/cjs/agentic/{agent-schema.js → nodes/agent-schema.js} +6 -5
- package/dist/cjs/agentic/nodes/agent-schema.js.map +1 -0
- package/dist/cjs/agentic/nodes/index.d.ts +1 -0
- package/dist/cjs/agentic/nodes/index.js +1 -0
- package/dist/cjs/agentic/nodes/index.js.map +1 -1
- package/dist/esm/agentic/nodes/agent-schema.d.ts +57 -0
- package/dist/esm/agentic/{agent-schema.js → nodes/agent-schema.js} +3 -3
- package/dist/esm/agentic/nodes/agent-schema.js.map +1 -0
- package/dist/esm/agentic/nodes/index.d.ts +1 -0
- package/dist/esm/agentic/nodes/index.js +1 -0
- package/dist/esm/agentic/nodes/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/cjs/agentic/agent-schema.d.ts +0 -1
- package/dist/cjs/agentic/agent-schema.js.map +0 -1
- package/dist/esm/agentic/agent-schema.d.ts +0 -1
- package/dist/esm/agentic/agent-schema.js.map +0 -1
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import z from "zod";
|
|
2
|
+
export declare const ParameterSchema: z.ZodObject<{
|
|
3
|
+
name: z.ZodString;
|
|
4
|
+
type: z.ZodEnum<{
|
|
5
|
+
string: "string";
|
|
6
|
+
number: "number";
|
|
7
|
+
boolean: "boolean";
|
|
8
|
+
object: "object";
|
|
9
|
+
array: "array";
|
|
10
|
+
}>;
|
|
11
|
+
required: z.ZodBoolean;
|
|
12
|
+
description: z.ZodString;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
export type Parameter = z.infer<typeof ParameterSchema>;
|
|
15
|
+
export declare const ToolSchema: z.ZodObject<{
|
|
16
|
+
id: z.ZodString;
|
|
17
|
+
resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
name: z.ZodString;
|
|
19
|
+
description: z.ZodString;
|
|
20
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
21
|
+
name: z.ZodString;
|
|
22
|
+
type: z.ZodEnum<{
|
|
23
|
+
string: "string";
|
|
24
|
+
number: "number";
|
|
25
|
+
boolean: "boolean";
|
|
26
|
+
object: "object";
|
|
27
|
+
array: "array";
|
|
28
|
+
}>;
|
|
29
|
+
required: z.ZodBoolean;
|
|
30
|
+
description: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
export type Tool = z.infer<typeof ToolSchema>;
|
|
34
|
+
export declare const AgentSchema: z.ZodObject<{
|
|
35
|
+
name: z.ZodString;
|
|
36
|
+
description: z.ZodString;
|
|
37
|
+
instructions: z.ZodString;
|
|
38
|
+
tools: z.ZodArray<z.ZodObject<{
|
|
39
|
+
id: z.ZodString;
|
|
40
|
+
resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
|
+
name: z.ZodString;
|
|
42
|
+
description: z.ZodString;
|
|
43
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
44
|
+
name: z.ZodString;
|
|
45
|
+
type: z.ZodEnum<{
|
|
46
|
+
string: "string";
|
|
47
|
+
number: "number";
|
|
48
|
+
boolean: "boolean";
|
|
49
|
+
object: "object";
|
|
50
|
+
array: "array";
|
|
51
|
+
}>;
|
|
52
|
+
required: z.ZodBoolean;
|
|
53
|
+
description: z.ZodString;
|
|
54
|
+
}, z.core.$strip>>;
|
|
55
|
+
}, z.core.$strip>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
export type Agent = z.infer<typeof AgentSchema>;
|
|
@@ -3,8 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.AgentSchema = exports.ToolSchema = exports.ParameterSchema = void 0;
|
|
6
7
|
const zod_1 = __importDefault(require("zod"));
|
|
7
|
-
|
|
8
|
+
exports.ParameterSchema = zod_1.default.object({
|
|
8
9
|
name: zod_1.default.string().describe("Name of the parameter"),
|
|
9
10
|
type: zod_1.default
|
|
10
11
|
.enum(["string", "number", "boolean", "array", "object"])
|
|
@@ -12,19 +13,19 @@ const ParameterSchema = zod_1.default.object({
|
|
|
12
13
|
required: zod_1.default.boolean().describe("Whether the parameter is required or not"),
|
|
13
14
|
description: zod_1.default.string().describe("Description of the parameter"),
|
|
14
15
|
});
|
|
15
|
-
|
|
16
|
+
exports.ToolSchema = zod_1.default.object({
|
|
16
17
|
id: zod_1.default.string().describe("graph node id for the tool"),
|
|
17
18
|
resourceId: zod_1.default.string().describe("Resource identifier for the tool").nullish(),
|
|
18
19
|
name: zod_1.default.string().describe("Name of the tool"),
|
|
19
20
|
description: zod_1.default.string().describe("Description of the tool"),
|
|
20
|
-
parameters: ParameterSchema.array().describe("Parameters for the tool"),
|
|
21
|
+
parameters: exports.ParameterSchema.array().describe("Parameters for the tool"),
|
|
21
22
|
});
|
|
22
|
-
|
|
23
|
+
exports.AgentSchema = zod_1.default.object({
|
|
23
24
|
name: zod_1.default.string().describe("Name of the agent"),
|
|
24
25
|
description: zod_1.default.string().describe("Description of the agent"),
|
|
25
26
|
instructions: zod_1.default
|
|
26
27
|
.string()
|
|
27
28
|
.describe("The instruction for agent is with respect to all the tools and ts parameters"),
|
|
28
|
-
tools: ToolSchema.array().describe("Tools available to the agent"),
|
|
29
|
+
tools: exports.ToolSchema.array().describe("Tools available to the agent"),
|
|
29
30
|
});
|
|
30
31
|
//# sourceMappingURL=agent-schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-schema.js","sourceRoot":"","sources":["../../../../agentic/nodes/agent-schema.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAoB;AAEP,QAAA,eAAe,GAAG,aAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IAClD,IAAI,EAAE,aAAC;SACF,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;SACxD,QAAQ,CAAC,4BAA4B,CAAC;IAC3C,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAC1E,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACnE,CAAC,CAAC;AAIU,QAAA,UAAU,GAAG,aAAC,CAAC,MAAM,CAAC;IAC/B,EAAE,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IACrD,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC,OAAO,EAAE;IAC7E,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IAC7C,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC3D,UAAU,EAAE,uBAAe,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;CAC1E,CAAC,CAAC;AAIU,QAAA,WAAW,GAAG,aAAC,CAAC,MAAM,CAAC;IAChC,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IAC5D,YAAY,EAAE,aAAC;SACV,MAAM,EAAE;SACR,QAAQ,CACL,8EAA8E,CACjF;IACL,KAAK,EAAE,kBAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACrE,CAAC,CAAC"}
|
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./schema"), exports);
|
|
18
|
+
__exportStar(require("./agent-schema"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../agentic/nodes/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../agentic/nodes/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,iDAA+B"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import z from "zod";
|
|
2
|
+
export declare const ParameterSchema: z.ZodObject<{
|
|
3
|
+
name: z.ZodString;
|
|
4
|
+
type: z.ZodEnum<{
|
|
5
|
+
string: "string";
|
|
6
|
+
number: "number";
|
|
7
|
+
boolean: "boolean";
|
|
8
|
+
object: "object";
|
|
9
|
+
array: "array";
|
|
10
|
+
}>;
|
|
11
|
+
required: z.ZodBoolean;
|
|
12
|
+
description: z.ZodString;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
export type Parameter = z.infer<typeof ParameterSchema>;
|
|
15
|
+
export declare const ToolSchema: z.ZodObject<{
|
|
16
|
+
id: z.ZodString;
|
|
17
|
+
resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
name: z.ZodString;
|
|
19
|
+
description: z.ZodString;
|
|
20
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
21
|
+
name: z.ZodString;
|
|
22
|
+
type: z.ZodEnum<{
|
|
23
|
+
string: "string";
|
|
24
|
+
number: "number";
|
|
25
|
+
boolean: "boolean";
|
|
26
|
+
object: "object";
|
|
27
|
+
array: "array";
|
|
28
|
+
}>;
|
|
29
|
+
required: z.ZodBoolean;
|
|
30
|
+
description: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
export type Tool = z.infer<typeof ToolSchema>;
|
|
34
|
+
export declare const AgentSchema: z.ZodObject<{
|
|
35
|
+
name: z.ZodString;
|
|
36
|
+
description: z.ZodString;
|
|
37
|
+
instructions: z.ZodString;
|
|
38
|
+
tools: z.ZodArray<z.ZodObject<{
|
|
39
|
+
id: z.ZodString;
|
|
40
|
+
resourceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
41
|
+
name: z.ZodString;
|
|
42
|
+
description: z.ZodString;
|
|
43
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
44
|
+
name: z.ZodString;
|
|
45
|
+
type: z.ZodEnum<{
|
|
46
|
+
string: "string";
|
|
47
|
+
number: "number";
|
|
48
|
+
boolean: "boolean";
|
|
49
|
+
object: "object";
|
|
50
|
+
array: "array";
|
|
51
|
+
}>;
|
|
52
|
+
required: z.ZodBoolean;
|
|
53
|
+
description: z.ZodString;
|
|
54
|
+
}, z.core.$strip>>;
|
|
55
|
+
}, z.core.$strip>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
export type Agent = z.infer<typeof AgentSchema>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
|
-
const ParameterSchema = z.object({
|
|
2
|
+
export const ParameterSchema = z.object({
|
|
3
3
|
name: z.string().describe("Name of the parameter"),
|
|
4
4
|
type: z
|
|
5
5
|
.enum(["string", "number", "boolean", "array", "object"])
|
|
@@ -7,14 +7,14 @@ const ParameterSchema = z.object({
|
|
|
7
7
|
required: z.boolean().describe("Whether the parameter is required or not"),
|
|
8
8
|
description: z.string().describe("Description of the parameter"),
|
|
9
9
|
});
|
|
10
|
-
const ToolSchema = z.object({
|
|
10
|
+
export const ToolSchema = z.object({
|
|
11
11
|
id: z.string().describe("graph node id for the tool"),
|
|
12
12
|
resourceId: z.string().describe("Resource identifier for the tool").nullish(),
|
|
13
13
|
name: z.string().describe("Name of the tool"),
|
|
14
14
|
description: z.string().describe("Description of the tool"),
|
|
15
15
|
parameters: ParameterSchema.array().describe("Parameters for the tool"),
|
|
16
16
|
});
|
|
17
|
-
const AgentSchema = z.object({
|
|
17
|
+
export const AgentSchema = z.object({
|
|
18
18
|
name: z.string().describe("Name of the agent"),
|
|
19
19
|
description: z.string().describe("Description of the agent"),
|
|
20
20
|
instructions: z
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-schema.js","sourceRoot":"","sources":["../../../../agentic/nodes/agent-schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IAClD,IAAI,EAAE,CAAC;SACF,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;SACxD,QAAQ,CAAC,4BAA4B,CAAC;IAC3C,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAC1E,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACnE,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/B,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IACrD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC,OAAO,EAAE;IAC7E,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IAC7C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC3D,UAAU,EAAE,eAAe,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;CAC1E,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAChC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IAC5D,YAAY,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,CACL,8EAA8E,CACjF;IACL,KAAK,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACrE,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../agentic/nodes/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../agentic/nodes/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agent-schema.js","sourceRoot":"","sources":["../../../agentic/agent-schema.ts"],"names":[],"mappings":";;;;;AAAA,8CAAoB;AAEpB,MAAM,eAAe,GAAG,aAAC,CAAC,MAAM,CAAC;IAC7B,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IAClD,IAAI,EAAE,aAAC;SACF,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;SACxD,QAAQ,CAAC,4BAA4B,CAAC;IAC3C,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAC1E,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACnE,CAAC,CAAC;AAIH,MAAM,UAAU,GAAG,aAAC,CAAC,MAAM,CAAC;IACxB,EAAE,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IACrD,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC,OAAO,EAAE;IAC7E,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IAC7C,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC3D,UAAU,EAAE,eAAe,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;CAC1E,CAAC,CAAC;AAIH,MAAM,WAAW,GAAG,aAAC,CAAC,MAAM,CAAC;IACzB,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IAC5D,YAAY,EAAE,aAAC;SACV,MAAM,EAAE;SACR,QAAQ,CACL,8EAA8E,CACjF;IACL,KAAK,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACrE,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agent-schema.js","sourceRoot":"","sources":["../../../agentic/agent-schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IAClD,IAAI,EAAE,CAAC;SACF,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;SACxD,QAAQ,CAAC,4BAA4B,CAAC;IAC3C,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAC1E,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACnE,CAAC,CAAC;AAIH,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IACxB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IACrD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC,CAAC,OAAO,EAAE;IAC7E,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IAC7C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAC3D,UAAU,EAAE,eAAe,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,yBAAyB,CAAC;CAC1E,CAAC,CAAC;AAIH,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IACzB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAC9C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IAC5D,YAAY,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,CACL,8EAA8E,CACjF;IACL,KAAK,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;CACrE,CAAC,CAAC"}
|