@agentica/core 0.44.0-dev.20260313-2 → 0.44.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/LICENSE +21 -21
- package/README.md +218 -218
- package/lib/context/internal/__IChatInitialApplication.d.ts +1 -2
- package/lib/errors/AgenticaJsonParseError.js +6 -6
- package/lib/index.mjs +47 -1
- package/lib/index.mjs.map +1 -1
- package/lib/orchestrate/call.js +16 -16
- package/lib/orchestrate/initialize.js +43 -1
- package/lib/orchestrate/initialize.js.map +1 -1
- package/lib/structures/IAgenticaController.d.ts +143 -143
- package/lib/utils/ChatGptCompletionMessageUtil.js +6 -6
- package/package.json +6 -6
- package/prompts/cancel.md +5 -5
- package/prompts/common.md +3 -3
- package/prompts/describe.md +7 -7
- package/prompts/execute.md +122 -122
- package/prompts/initialize.md +3 -3
- package/prompts/json_parse_error.md +35 -35
- package/prompts/select.md +7 -7
- package/prompts/validate.md +123 -123
- package/prompts/validate_repeated.md +31 -31
- package/src/Agentica.ts +367 -367
- package/src/MicroAgentica.ts +357 -357
- package/src/constants/AgenticaConstant.ts +4 -4
- package/src/constants/AgenticaDefaultPrompt.ts +44 -44
- package/src/constants/index.ts +2 -2
- package/src/context/AgenticaContext.ts +136 -136
- package/src/context/AgenticaContextRequestResult.ts +14 -14
- package/src/context/AgenticaOperation.ts +73 -73
- package/src/context/AgenticaOperationCollection.ts +49 -49
- package/src/context/AgenticaOperationSelection.ts +9 -9
- package/src/context/AgenticaTokenUsage.ts +186 -186
- package/src/context/MicroAgenticaContext.ts +99 -99
- package/src/context/index.ts +5 -5
- package/src/context/internal/AgenticaOperationComposer.ts +177 -177
- package/src/context/internal/AgenticaTokenUsageAggregator.ts +66 -66
- package/src/context/internal/__IChatCancelFunctionsApplication.ts +23 -23
- package/src/context/internal/__IChatFunctionReference.ts +21 -21
- package/src/context/internal/__IChatInitialApplication.ts +13 -15
- package/src/context/internal/__IChatSelectFunctionsApplication.ts +24 -24
- package/src/context/internal/isAgenticaContext.ts +11 -11
- package/src/errors/AgenticaJsonParseError.ts +52 -52
- package/src/errors/AgenticaValidationError.ts +49 -49
- package/src/errors/index.ts +2 -2
- package/src/events/AgenticaAssistantMessageEvent.ts +12 -12
- package/src/events/AgenticaCallEvent.ts +27 -27
- package/src/events/AgenticaCancelEvent.ts +9 -9
- package/src/events/AgenticaDescribeEvent.ts +14 -14
- package/src/events/AgenticaEvent.ts +59 -59
- package/src/events/AgenticaEvent.type.ts +19 -19
- package/src/events/AgenticaEventBase.ts +18 -18
- package/src/events/AgenticaEventSource.ts +6 -6
- package/src/events/AgenticaExecuteEvent.ts +45 -45
- package/src/events/AgenticaInitializeEvent.ts +7 -7
- package/src/events/AgenticaJsonParseErrorEvent.ts +16 -16
- package/src/events/AgenticaRequestEvent.ts +27 -27
- package/src/events/AgenticaResponseEvent.ts +32 -32
- package/src/events/AgenticaSelectEvent.ts +11 -11
- package/src/events/AgenticaUserMessageEvent.ts +12 -12
- package/src/events/AgenticaValidateEvent.ts +32 -32
- package/src/events/MicroAgenticaEvent.ts +45 -45
- package/src/events/index.ts +15 -15
- package/src/factory/events.ts +357 -357
- package/src/factory/histories.ts +348 -348
- package/src/factory/index.ts +3 -3
- package/src/factory/operations.ts +16 -16
- package/src/functional/assertHttpController.ts +106 -106
- package/src/functional/assertHttpLlmApplication.ts +52 -52
- package/src/functional/assertMcpController.ts +47 -47
- package/src/functional/createMcpLlmApplication.ts +72 -72
- package/src/functional/index.ts +7 -7
- package/src/functional/validateHttpController.ts +113 -113
- package/src/functional/validateHttpLlmApplication.ts +65 -65
- package/src/functional/validateMcpController.ts +53 -53
- package/src/histories/AgenticaAssistantMessageHistory.ts +10 -10
- package/src/histories/AgenticaCancelHistory.ts +8 -8
- package/src/histories/AgenticaDescribeHistory.ts +18 -18
- package/src/histories/AgenticaExecuteHistory.ts +64 -64
- package/src/histories/AgenticaHistory.ts +28 -28
- package/src/histories/AgenticaHistoryBase.ts +35 -35
- package/src/histories/AgenticaSelectHistory.ts +8 -8
- package/src/histories/AgenticaSystemMessageHistory.ts +10 -10
- package/src/histories/AgenticaUserMessageHistory.ts +11 -11
- package/src/histories/MicroAgenticaHistory.ts +19 -19
- package/src/histories/contents/AgenticaUserMessageAudioContent.ts +21 -21
- package/src/histories/contents/AgenticaUserMessageContent.ts +19 -19
- package/src/histories/contents/AgenticaUserMessageContentBase.ts +6 -6
- package/src/histories/contents/AgenticaUserMessageFileContent.ts +25 -25
- package/src/histories/contents/AgenticaUserMessageImageContent.ts +33 -33
- package/src/histories/contents/AgenticaUserMessageTextContent.ts +15 -15
- package/src/histories/contents/index.ts +5 -5
- package/src/histories/index.ts +10 -10
- package/src/index.ts +15 -15
- package/src/json/IAgenticaEventJson.ts +265 -265
- package/src/json/IAgenticaEventJson.type.ts +19 -19
- package/src/json/IAgenticaHistoryJson.ts +165 -165
- package/src/json/IAgenticaHistoryJson.type.ts +19 -19
- package/src/json/IAgenticaOperationJson.ts +36 -36
- package/src/json/IAgenticaOperationSelectionJson.ts +26 -26
- package/src/json/IAgenticaTokenUsageJson.ts +107 -107
- package/src/json/IMicroAgenticaEventJson.ts +22 -22
- package/src/json/IMicroAgenticaHistoryJson.ts +25 -25
- package/src/json/index.ts +7 -7
- package/src/orchestrate/call.ts +542 -542
- package/src/orchestrate/cancel.ts +265 -265
- package/src/orchestrate/describe.ts +66 -66
- package/src/orchestrate/execute.ts +61 -61
- package/src/orchestrate/index.ts +6 -6
- package/src/orchestrate/initialize.ts +102 -102
- package/src/orchestrate/internal/cancelFunctionFromContext.ts +33 -33
- package/src/orchestrate/internal/selectFunctionFromContext.ts +34 -34
- package/src/orchestrate/select.ts +320 -320
- package/src/structures/IAgenticaConfig.ts +83 -83
- package/src/structures/IAgenticaConfigBase.ts +87 -87
- package/src/structures/IAgenticaController.ts +143 -143
- package/src/structures/IAgenticaExecutor.ts +167 -167
- package/src/structures/IAgenticaProps.ts +78 -78
- package/src/structures/IAgenticaSystemPrompt.ts +236 -236
- package/src/structures/IAgenticaVendor.ts +54 -54
- package/src/structures/IMcpTool.ts +60 -60
- package/src/structures/IMicroAgenticaConfig.ts +56 -56
- package/src/structures/IMicroAgenticaExecutor.ts +67 -67
- package/src/structures/IMicroAgenticaProps.ts +77 -77
- package/src/structures/IMicroAgenticaSystemPrompt.ts +169 -169
- package/src/structures/index.ts +10 -10
- package/src/transformers/transformHistory.ts +172 -172
- package/src/utils/AssistantMessageEmptyError.ts +20 -20
- package/src/utils/AsyncQueue.spec.ts +355 -355
- package/src/utils/AsyncQueue.ts +95 -95
- package/src/utils/ByteArrayUtil.ts +5 -5
- package/src/utils/ChatGptCompletionMessageUtil.spec.ts +314 -314
- package/src/utils/ChatGptCompletionMessageUtil.ts +210 -210
- package/src/utils/ChatGptCompletionStreamingUtil.spec.ts +909 -909
- package/src/utils/ChatGptCompletionStreamingUtil.ts +91 -91
- package/src/utils/ChatGptTokenUsageAggregator.spec.ts +226 -226
- package/src/utils/ChatGptTokenUsageAggregator.ts +57 -57
- package/src/utils/MPSC.spec.ts +276 -276
- package/src/utils/MPSC.ts +42 -42
- package/src/utils/Singleton.spec.ts +138 -138
- package/src/utils/Singleton.ts +42 -42
- package/src/utils/StreamUtil.spec.ts +512 -512
- package/src/utils/StreamUtil.ts +87 -87
- package/src/utils/__map_take.spec.ts +140 -140
- package/src/utils/__map_take.ts +13 -13
- package/src/utils/__retry.spec.ts +198 -198
- package/src/utils/__retry.ts +18 -18
- package/src/utils/assertExecuteFailure.ts +16 -16
- package/src/utils/index.ts +4 -4
- package/src/utils/request.ts +140 -140
- package/src/utils/types.ts +50 -50
|
@@ -1,177 +1,177 @@
|
|
|
1
|
-
import type { IAgenticaConfig } from "../../structures/IAgenticaConfig";
|
|
2
|
-
import type { IAgenticaController } from "../../structures/IAgenticaController";
|
|
3
|
-
import type { IMicroAgenticaConfig } from "../../structures/IMicroAgenticaConfig";
|
|
4
|
-
import type { AgenticaOperation } from "../AgenticaOperation";
|
|
5
|
-
import type { AgenticaOperationCollection } from "../AgenticaOperationCollection";
|
|
6
|
-
|
|
7
|
-
import { __map_take } from "../../utils/__map_take";
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Compose the agentica operation collection.
|
|
11
|
-
*
|
|
12
|
-
* Compose the {@link AgenticaOperationCollection} from the given
|
|
13
|
-
* controllers and config.
|
|
14
|
-
*
|
|
15
|
-
* @internal
|
|
16
|
-
*/
|
|
17
|
-
export function compose(props: {
|
|
18
|
-
controllers: IAgenticaController[];
|
|
19
|
-
config?: IAgenticaConfig | IMicroAgenticaConfig | undefined;
|
|
20
|
-
}): AgenticaOperationCollection {
|
|
21
|
-
const unique: boolean = (props.controllers.length === 1 || (() => {
|
|
22
|
-
const names = props.controllers.map(
|
|
23
|
-
|
|
24
|
-
controllers => controllers.application.functions.map((func: { name: string }) => func.name),
|
|
25
|
-
).flat();
|
|
26
|
-
return new Set(names).size === names.length;
|
|
27
|
-
})());
|
|
28
|
-
|
|
29
|
-
const array: AgenticaOperation[] = getOperations({
|
|
30
|
-
controllers: props.controllers,
|
|
31
|
-
naming: (func: string, controllerIndex: number) => unique ? func : `_${controllerIndex}_${func}`,
|
|
32
|
-
});
|
|
33
|
-
const capacity: number | undefined = (props.config as IAgenticaConfig)?.capacity;
|
|
34
|
-
const divided: AgenticaOperation[][] | undefined
|
|
35
|
-
= capacity !== undefined && array.length > capacity
|
|
36
|
-
? divide({
|
|
37
|
-
array,
|
|
38
|
-
capacity,
|
|
39
|
-
})
|
|
40
|
-
: undefined;
|
|
41
|
-
|
|
42
|
-
const flat: Map<string, AgenticaOperation> = new Map();
|
|
43
|
-
const group: Map<string, Map<string, AgenticaOperation>> = new Map();
|
|
44
|
-
for (const item of array) {
|
|
45
|
-
flat.set(item.name, item);
|
|
46
|
-
__map_take(group, item.controller.name, () => new Map()).set(
|
|
47
|
-
item.name,
|
|
48
|
-
item,
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
array,
|
|
53
|
-
divided,
|
|
54
|
-
flat,
|
|
55
|
-
group,
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
/**
|
|
60
|
-
* @internal
|
|
61
|
-
*/
|
|
62
|
-
export function getOperations(props: {
|
|
63
|
-
controllers: IAgenticaController[];
|
|
64
|
-
naming: (func: string, controllerIndex: number) => string;
|
|
65
|
-
}): AgenticaOperation[] {
|
|
66
|
-
return props.controllers.flatMap((controller, idx) => {
|
|
67
|
-
switch (controller.protocol) {
|
|
68
|
-
case "http":{
|
|
69
|
-
return toHttpOperations({ controller, index: idx, naming: props.naming }); }
|
|
70
|
-
case "class":{
|
|
71
|
-
return toClassOperations({ controller, index: idx, naming: props.naming }); }
|
|
72
|
-
case "mcp": {
|
|
73
|
-
return toMcpOperations({ controller, index: idx, naming: props.naming });
|
|
74
|
-
}
|
|
75
|
-
default:
|
|
76
|
-
controller satisfies never;
|
|
77
|
-
throw new Error(`Unsupported protocol: ${(controller as { protocol: string }).protocol}`);
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
export function toHttpOperations(props: {
|
|
86
|
-
controller: IAgenticaController.IHttp;
|
|
87
|
-
index: number;
|
|
88
|
-
naming: (func: string, controllerIndex: number) => string;
|
|
89
|
-
}): AgenticaOperation[] {
|
|
90
|
-
return props.controller.application.functions.map(func => ({
|
|
91
|
-
protocol: "http",
|
|
92
|
-
controller: props.controller,
|
|
93
|
-
function: func,
|
|
94
|
-
name: props.naming(func.name, props.index),
|
|
95
|
-
toJSON: () => ({
|
|
96
|
-
protocol: "http",
|
|
97
|
-
controller: props.controller.name,
|
|
98
|
-
function: func.name,
|
|
99
|
-
name: props.naming(func.name, props.index),
|
|
100
|
-
}),
|
|
101
|
-
}));
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
/**
|
|
105
|
-
* @internal
|
|
106
|
-
*/
|
|
107
|
-
export function toClassOperations(props: {
|
|
108
|
-
controller: IAgenticaController.IClass;
|
|
109
|
-
index: number;
|
|
110
|
-
naming: (func: string, controllerIndex: number) => string;
|
|
111
|
-
}): AgenticaOperation[] {
|
|
112
|
-
return props.controller.application.functions.map(func => ({
|
|
113
|
-
protocol: "class",
|
|
114
|
-
controller: props.controller,
|
|
115
|
-
function: func,
|
|
116
|
-
name: props.naming(func.name, props.index),
|
|
117
|
-
toJSON: () => ({
|
|
118
|
-
protocol: "class",
|
|
119
|
-
controller: props.controller.name,
|
|
120
|
-
function: func.name,
|
|
121
|
-
name: props.naming(func.name, props.index),
|
|
122
|
-
}),
|
|
123
|
-
}));
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* @internal
|
|
128
|
-
*/
|
|
129
|
-
export function toMcpOperations(props: {
|
|
130
|
-
controller: IAgenticaController.IMcp;
|
|
131
|
-
index: number;
|
|
132
|
-
naming: (func: string, controllerIndex: number) => string;
|
|
133
|
-
}): AgenticaOperation[] {
|
|
134
|
-
return props.controller.application.functions.map(func => ({
|
|
135
|
-
protocol: "mcp",
|
|
136
|
-
controller: props.controller,
|
|
137
|
-
|
|
138
|
-
function: func,
|
|
139
|
-
|
|
140
|
-
name: props.naming(func.name, props.index),
|
|
141
|
-
toJSON: () => ({
|
|
142
|
-
protocol: "mcp",
|
|
143
|
-
controller: props.controller.name,
|
|
144
|
-
|
|
145
|
-
function: func.name,
|
|
146
|
-
|
|
147
|
-
name: props.naming(func.name, props.index),
|
|
148
|
-
}),
|
|
149
|
-
}));
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
export function divide<T>(props: {
|
|
156
|
-
array: T[];
|
|
157
|
-
capacity: number;
|
|
158
|
-
}): T[][] {
|
|
159
|
-
if (props.capacity <= 0) {
|
|
160
|
-
throw new Error("Capacity must be a positive integer");
|
|
161
|
-
}
|
|
162
|
-
if (Number.isNaN(props.capacity)) {
|
|
163
|
-
throw new TypeError("Capacity must be a positive integer");
|
|
164
|
-
}
|
|
165
|
-
if (props.capacity === Infinity) {
|
|
166
|
-
throw new Error("Capacity must be a positive integer");
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
const size: number = Math.ceil(props.array.length / props.capacity);
|
|
170
|
-
const capacity: number = Math.ceil(props.array.length / size);
|
|
171
|
-
const replica: T[] = props.array.slice();
|
|
172
|
-
return Array.from({ length: size }, () => replica.splice(0, capacity));
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
export const AgenticaOperationComposer = {
|
|
176
|
-
compose,
|
|
177
|
-
};
|
|
1
|
+
import type { IAgenticaConfig } from "../../structures/IAgenticaConfig";
|
|
2
|
+
import type { IAgenticaController } from "../../structures/IAgenticaController";
|
|
3
|
+
import type { IMicroAgenticaConfig } from "../../structures/IMicroAgenticaConfig";
|
|
4
|
+
import type { AgenticaOperation } from "../AgenticaOperation";
|
|
5
|
+
import type { AgenticaOperationCollection } from "../AgenticaOperationCollection";
|
|
6
|
+
|
|
7
|
+
import { __map_take } from "../../utils/__map_take";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Compose the agentica operation collection.
|
|
11
|
+
*
|
|
12
|
+
* Compose the {@link AgenticaOperationCollection} from the given
|
|
13
|
+
* controllers and config.
|
|
14
|
+
*
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export function compose(props: {
|
|
18
|
+
controllers: IAgenticaController[];
|
|
19
|
+
config?: IAgenticaConfig | IMicroAgenticaConfig | undefined;
|
|
20
|
+
}): AgenticaOperationCollection {
|
|
21
|
+
const unique: boolean = (props.controllers.length === 1 || (() => {
|
|
22
|
+
const names = props.controllers.map(
|
|
23
|
+
|
|
24
|
+
controllers => controllers.application.functions.map((func: { name: string }) => func.name),
|
|
25
|
+
).flat();
|
|
26
|
+
return new Set(names).size === names.length;
|
|
27
|
+
})());
|
|
28
|
+
|
|
29
|
+
const array: AgenticaOperation[] = getOperations({
|
|
30
|
+
controllers: props.controllers,
|
|
31
|
+
naming: (func: string, controllerIndex: number) => unique ? func : `_${controllerIndex}_${func}`,
|
|
32
|
+
});
|
|
33
|
+
const capacity: number | undefined = (props.config as IAgenticaConfig)?.capacity;
|
|
34
|
+
const divided: AgenticaOperation[][] | undefined
|
|
35
|
+
= capacity !== undefined && array.length > capacity
|
|
36
|
+
? divide({
|
|
37
|
+
array,
|
|
38
|
+
capacity,
|
|
39
|
+
})
|
|
40
|
+
: undefined;
|
|
41
|
+
|
|
42
|
+
const flat: Map<string, AgenticaOperation> = new Map();
|
|
43
|
+
const group: Map<string, Map<string, AgenticaOperation>> = new Map();
|
|
44
|
+
for (const item of array) {
|
|
45
|
+
flat.set(item.name, item);
|
|
46
|
+
__map_take(group, item.controller.name, () => new Map()).set(
|
|
47
|
+
item.name,
|
|
48
|
+
item,
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
array,
|
|
53
|
+
divided,
|
|
54
|
+
flat,
|
|
55
|
+
group,
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
export function getOperations(props: {
|
|
63
|
+
controllers: IAgenticaController[];
|
|
64
|
+
naming: (func: string, controllerIndex: number) => string;
|
|
65
|
+
}): AgenticaOperation[] {
|
|
66
|
+
return props.controllers.flatMap((controller, idx) => {
|
|
67
|
+
switch (controller.protocol) {
|
|
68
|
+
case "http":{
|
|
69
|
+
return toHttpOperations({ controller, index: idx, naming: props.naming }); }
|
|
70
|
+
case "class":{
|
|
71
|
+
return toClassOperations({ controller, index: idx, naming: props.naming }); }
|
|
72
|
+
case "mcp": {
|
|
73
|
+
return toMcpOperations({ controller, index: idx, naming: props.naming });
|
|
74
|
+
}
|
|
75
|
+
default:
|
|
76
|
+
controller satisfies never;
|
|
77
|
+
throw new Error(`Unsupported protocol: ${(controller as { protocol: string }).protocol}`);
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
export function toHttpOperations(props: {
|
|
86
|
+
controller: IAgenticaController.IHttp;
|
|
87
|
+
index: number;
|
|
88
|
+
naming: (func: string, controllerIndex: number) => string;
|
|
89
|
+
}): AgenticaOperation[] {
|
|
90
|
+
return props.controller.application.functions.map(func => ({
|
|
91
|
+
protocol: "http",
|
|
92
|
+
controller: props.controller,
|
|
93
|
+
function: func,
|
|
94
|
+
name: props.naming(func.name, props.index),
|
|
95
|
+
toJSON: () => ({
|
|
96
|
+
protocol: "http",
|
|
97
|
+
controller: props.controller.name,
|
|
98
|
+
function: func.name,
|
|
99
|
+
name: props.naming(func.name, props.index),
|
|
100
|
+
}),
|
|
101
|
+
}));
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
export function toClassOperations(props: {
|
|
108
|
+
controller: IAgenticaController.IClass;
|
|
109
|
+
index: number;
|
|
110
|
+
naming: (func: string, controllerIndex: number) => string;
|
|
111
|
+
}): AgenticaOperation[] {
|
|
112
|
+
return props.controller.application.functions.map(func => ({
|
|
113
|
+
protocol: "class",
|
|
114
|
+
controller: props.controller,
|
|
115
|
+
function: func,
|
|
116
|
+
name: props.naming(func.name, props.index),
|
|
117
|
+
toJSON: () => ({
|
|
118
|
+
protocol: "class",
|
|
119
|
+
controller: props.controller.name,
|
|
120
|
+
function: func.name,
|
|
121
|
+
name: props.naming(func.name, props.index),
|
|
122
|
+
}),
|
|
123
|
+
}));
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
export function toMcpOperations(props: {
|
|
130
|
+
controller: IAgenticaController.IMcp;
|
|
131
|
+
index: number;
|
|
132
|
+
naming: (func: string, controllerIndex: number) => string;
|
|
133
|
+
}): AgenticaOperation[] {
|
|
134
|
+
return props.controller.application.functions.map(func => ({
|
|
135
|
+
protocol: "mcp",
|
|
136
|
+
controller: props.controller,
|
|
137
|
+
|
|
138
|
+
function: func,
|
|
139
|
+
|
|
140
|
+
name: props.naming(func.name, props.index),
|
|
141
|
+
toJSON: () => ({
|
|
142
|
+
protocol: "mcp",
|
|
143
|
+
controller: props.controller.name,
|
|
144
|
+
|
|
145
|
+
function: func.name,
|
|
146
|
+
|
|
147
|
+
name: props.naming(func.name, props.index),
|
|
148
|
+
}),
|
|
149
|
+
}));
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* @internal
|
|
154
|
+
*/
|
|
155
|
+
export function divide<T>(props: {
|
|
156
|
+
array: T[];
|
|
157
|
+
capacity: number;
|
|
158
|
+
}): T[][] {
|
|
159
|
+
if (props.capacity <= 0) {
|
|
160
|
+
throw new Error("Capacity must be a positive integer");
|
|
161
|
+
}
|
|
162
|
+
if (Number.isNaN(props.capacity)) {
|
|
163
|
+
throw new TypeError("Capacity must be a positive integer");
|
|
164
|
+
}
|
|
165
|
+
if (props.capacity === Infinity) {
|
|
166
|
+
throw new Error("Capacity must be a positive integer");
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
const size: number = Math.ceil(props.array.length / props.capacity);
|
|
170
|
+
const capacity: number = Math.ceil(props.array.length / size);
|
|
171
|
+
const replica: T[] = props.array.slice();
|
|
172
|
+
return Array.from({ length: size }, () => replica.splice(0, capacity));
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export const AgenticaOperationComposer = {
|
|
176
|
+
compose,
|
|
177
|
+
};
|
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import type { CompletionUsage } from "openai/resources";
|
|
2
|
-
|
|
3
|
-
import type { IAgenticaTokenUsageJson } from "../../json/IAgenticaTokenUsageJson";
|
|
4
|
-
import type { AgenticaTokenUsage } from "../AgenticaTokenUsage";
|
|
5
|
-
|
|
6
|
-
export function aggregate(props: {
|
|
7
|
-
kind: Exclude<keyof IAgenticaTokenUsageJson, "aggregate">;
|
|
8
|
-
completionUsage: CompletionUsage;
|
|
9
|
-
usage: AgenticaTokenUsage;
|
|
10
|
-
}): void {
|
|
11
|
-
// ----
|
|
12
|
-
// COMPONENT
|
|
13
|
-
// ----
|
|
14
|
-
const component: AgenticaTokenUsage.IComponent = props.usage[props.kind];
|
|
15
|
-
|
|
16
|
-
// TOTAL
|
|
17
|
-
component.total += props.completionUsage.total_tokens;
|
|
18
|
-
|
|
19
|
-
// PROMPT
|
|
20
|
-
component.input.total += props.completionUsage.prompt_tokens;
|
|
21
|
-
component.input.total
|
|
22
|
-
+= props.completionUsage.prompt_tokens_details?.audio_tokens ?? 0;
|
|
23
|
-
component.input.cached
|
|
24
|
-
+= props.completionUsage.prompt_tokens_details?.cached_tokens ?? 0;
|
|
25
|
-
|
|
26
|
-
// COMPLETION
|
|
27
|
-
component.output.total += props.completionUsage.completion_tokens;
|
|
28
|
-
component.output.accepted_prediction
|
|
29
|
-
+= props.completionUsage.completion_tokens_details
|
|
30
|
-
?.accepted_prediction_tokens ?? 0;
|
|
31
|
-
component.output.reasoning
|
|
32
|
-
+= props.completionUsage.completion_tokens_details?.reasoning_tokens ?? 0;
|
|
33
|
-
component.output.rejected_prediction
|
|
34
|
-
+= props.completionUsage.completion_tokens_details
|
|
35
|
-
?.rejected_prediction_tokens ?? 0;
|
|
36
|
-
|
|
37
|
-
// ----
|
|
38
|
-
// RE-AGGREGATE
|
|
39
|
-
// ----
|
|
40
|
-
const sum = (getter: (comp: AgenticaTokenUsage.IComponent) => number) =>
|
|
41
|
-
(
|
|
42
|
-
Object.entries(props.usage) as [
|
|
43
|
-
keyof AgenticaTokenUsage,
|
|
44
|
-
AgenticaTokenUsage.IComponent,
|
|
45
|
-
][]
|
|
46
|
-
)
|
|
47
|
-
.filter(([key]) => key !== "aggregate")
|
|
48
|
-
.map(([, comp]) => getter(comp))
|
|
49
|
-
.reduce((a, b) => a + b, 0);
|
|
50
|
-
const aggregate: AgenticaTokenUsage.IComponent = props.usage.aggregate;
|
|
51
|
-
aggregate.total = sum(comp => comp.total);
|
|
52
|
-
aggregate.input.total = sum(comp => comp.input.total);
|
|
53
|
-
aggregate.input.cached = sum(comp => comp.input.cached);
|
|
54
|
-
aggregate.output.total = sum(comp => comp.output.total);
|
|
55
|
-
aggregate.output.reasoning = sum(comp => comp.output.reasoning);
|
|
56
|
-
aggregate.output.accepted_prediction = sum(
|
|
57
|
-
comp => comp.output.accepted_prediction,
|
|
58
|
-
);
|
|
59
|
-
aggregate.output.rejected_prediction = sum(
|
|
60
|
-
comp => comp.output.rejected_prediction,
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export const AgenticaTokenUsageAggregator = {
|
|
65
|
-
aggregate,
|
|
66
|
-
};
|
|
1
|
+
import type { CompletionUsage } from "openai/resources";
|
|
2
|
+
|
|
3
|
+
import type { IAgenticaTokenUsageJson } from "../../json/IAgenticaTokenUsageJson";
|
|
4
|
+
import type { AgenticaTokenUsage } from "../AgenticaTokenUsage";
|
|
5
|
+
|
|
6
|
+
export function aggregate(props: {
|
|
7
|
+
kind: Exclude<keyof IAgenticaTokenUsageJson, "aggregate">;
|
|
8
|
+
completionUsage: CompletionUsage;
|
|
9
|
+
usage: AgenticaTokenUsage;
|
|
10
|
+
}): void {
|
|
11
|
+
// ----
|
|
12
|
+
// COMPONENT
|
|
13
|
+
// ----
|
|
14
|
+
const component: AgenticaTokenUsage.IComponent = props.usage[props.kind];
|
|
15
|
+
|
|
16
|
+
// TOTAL
|
|
17
|
+
component.total += props.completionUsage.total_tokens;
|
|
18
|
+
|
|
19
|
+
// PROMPT
|
|
20
|
+
component.input.total += props.completionUsage.prompt_tokens;
|
|
21
|
+
component.input.total
|
|
22
|
+
+= props.completionUsage.prompt_tokens_details?.audio_tokens ?? 0;
|
|
23
|
+
component.input.cached
|
|
24
|
+
+= props.completionUsage.prompt_tokens_details?.cached_tokens ?? 0;
|
|
25
|
+
|
|
26
|
+
// COMPLETION
|
|
27
|
+
component.output.total += props.completionUsage.completion_tokens;
|
|
28
|
+
component.output.accepted_prediction
|
|
29
|
+
+= props.completionUsage.completion_tokens_details
|
|
30
|
+
?.accepted_prediction_tokens ?? 0;
|
|
31
|
+
component.output.reasoning
|
|
32
|
+
+= props.completionUsage.completion_tokens_details?.reasoning_tokens ?? 0;
|
|
33
|
+
component.output.rejected_prediction
|
|
34
|
+
+= props.completionUsage.completion_tokens_details
|
|
35
|
+
?.rejected_prediction_tokens ?? 0;
|
|
36
|
+
|
|
37
|
+
// ----
|
|
38
|
+
// RE-AGGREGATE
|
|
39
|
+
// ----
|
|
40
|
+
const sum = (getter: (comp: AgenticaTokenUsage.IComponent) => number) =>
|
|
41
|
+
(
|
|
42
|
+
Object.entries(props.usage) as [
|
|
43
|
+
keyof AgenticaTokenUsage,
|
|
44
|
+
AgenticaTokenUsage.IComponent,
|
|
45
|
+
][]
|
|
46
|
+
)
|
|
47
|
+
.filter(([key]) => key !== "aggregate")
|
|
48
|
+
.map(([, comp]) => getter(comp))
|
|
49
|
+
.reduce((a, b) => a + b, 0);
|
|
50
|
+
const aggregate: AgenticaTokenUsage.IComponent = props.usage.aggregate;
|
|
51
|
+
aggregate.total = sum(comp => comp.total);
|
|
52
|
+
aggregate.input.total = sum(comp => comp.input.total);
|
|
53
|
+
aggregate.input.cached = sum(comp => comp.input.cached);
|
|
54
|
+
aggregate.output.total = sum(comp => comp.output.total);
|
|
55
|
+
aggregate.output.reasoning = sum(comp => comp.output.reasoning);
|
|
56
|
+
aggregate.output.accepted_prediction = sum(
|
|
57
|
+
comp => comp.output.accepted_prediction,
|
|
58
|
+
);
|
|
59
|
+
aggregate.output.rejected_prediction = sum(
|
|
60
|
+
comp => comp.output.rejected_prediction,
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export const AgenticaTokenUsageAggregator = {
|
|
65
|
+
aggregate,
|
|
66
|
+
};
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import type { __IChatFunctionReference } from "./__IChatFunctionReference";
|
|
2
|
-
|
|
3
|
-
export interface __IChatCancelFunctionsApplication {
|
|
4
|
-
/**
|
|
5
|
-
* Cancel a function from the candidate list to call.
|
|
6
|
-
*
|
|
7
|
-
* If you A.I. agent has understood that the user wants to cancel
|
|
8
|
-
* some candidate functions to call from the conversation, please cancel
|
|
9
|
-
* them through this function.
|
|
10
|
-
*
|
|
11
|
-
* Also, when you A.I. find a function that has been selected by the candidate
|
|
12
|
-
* pooling, cancel the function by calling this function. For reference, the
|
|
13
|
-
* candidate pooling means that user wants only one function to call, but you A.I.
|
|
14
|
-
* agent selects multiple candidate functions because the A.I. agent can't specify
|
|
15
|
-
* only one thing due to lack of specificity or homogeneity of candidate functions.
|
|
16
|
-
*
|
|
17
|
-
* Additionally, if you A.I. agent wants to cancel same function multiply, you can
|
|
18
|
-
* do it by assigning the same function name multiply in the `functions` property.
|
|
19
|
-
*
|
|
20
|
-
* @param props Properties of the function
|
|
21
|
-
*/
|
|
22
|
-
cancelFunctions: (props: __IChatFunctionReference.IProps) => Promise<void>;
|
|
23
|
-
}
|
|
1
|
+
import type { __IChatFunctionReference } from "./__IChatFunctionReference";
|
|
2
|
+
|
|
3
|
+
export interface __IChatCancelFunctionsApplication {
|
|
4
|
+
/**
|
|
5
|
+
* Cancel a function from the candidate list to call.
|
|
6
|
+
*
|
|
7
|
+
* If you A.I. agent has understood that the user wants to cancel
|
|
8
|
+
* some candidate functions to call from the conversation, please cancel
|
|
9
|
+
* them through this function.
|
|
10
|
+
*
|
|
11
|
+
* Also, when you A.I. find a function that has been selected by the candidate
|
|
12
|
+
* pooling, cancel the function by calling this function. For reference, the
|
|
13
|
+
* candidate pooling means that user wants only one function to call, but you A.I.
|
|
14
|
+
* agent selects multiple candidate functions because the A.I. agent can't specify
|
|
15
|
+
* only one thing due to lack of specificity or homogeneity of candidate functions.
|
|
16
|
+
*
|
|
17
|
+
* Additionally, if you A.I. agent wants to cancel same function multiply, you can
|
|
18
|
+
* do it by assigning the same function name multiply in the `functions` property.
|
|
19
|
+
*
|
|
20
|
+
* @param props Properties of the function
|
|
21
|
+
*/
|
|
22
|
+
cancelFunctions: (props: __IChatFunctionReference.IProps) => Promise<void>;
|
|
23
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export interface __IChatFunctionReference {
|
|
2
|
-
/**
|
|
3
|
-
* The reason of the function selection.
|
|
4
|
-
*
|
|
5
|
-
* Just write the reason why you've determined to select this function.
|
|
6
|
-
*/
|
|
7
|
-
reason: string;
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Name of the target function to call.
|
|
11
|
-
*/
|
|
12
|
-
name: string;
|
|
13
|
-
}
|
|
14
|
-
export namespace __IChatFunctionReference {
|
|
15
|
-
export interface IProps {
|
|
16
|
-
/**
|
|
17
|
-
* List of target functions.
|
|
18
|
-
*/
|
|
19
|
-
functions: __IChatFunctionReference[];
|
|
20
|
-
}
|
|
21
|
-
}
|
|
1
|
+
export interface __IChatFunctionReference {
|
|
2
|
+
/**
|
|
3
|
+
* The reason of the function selection.
|
|
4
|
+
*
|
|
5
|
+
* Just write the reason why you've determined to select this function.
|
|
6
|
+
*/
|
|
7
|
+
reason: string;
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Name of the target function to call.
|
|
11
|
+
*/
|
|
12
|
+
name: string;
|
|
13
|
+
}
|
|
14
|
+
export namespace __IChatFunctionReference {
|
|
15
|
+
export interface IProps {
|
|
16
|
+
/**
|
|
17
|
+
* List of target functions.
|
|
18
|
+
*/
|
|
19
|
+
functions: __IChatFunctionReference[];
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
getApiFunctions: (props: object) => Promise<Array<IHttpLlmFunction>>;
|
|
15
|
-
}
|
|
1
|
+
export interface __IChatInitialApplication {
|
|
2
|
+
/**
|
|
3
|
+
* Get list of API functions.
|
|
4
|
+
*
|
|
5
|
+
* If user seems like to request some function calling except this one,
|
|
6
|
+
* call this `getApiFunctions()` to get the list of candidate API functions
|
|
7
|
+
* provided from this application.
|
|
8
|
+
*
|
|
9
|
+
* Also, user just wants to list up every remote API functions that can be
|
|
10
|
+
* called from the backend server, utilize this function too.
|
|
11
|
+
*/
|
|
12
|
+
getApiFunctions: (props: object) => Promise<void>;
|
|
13
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import type { __IChatFunctionReference } from "./__IChatFunctionReference";
|
|
2
|
-
|
|
3
|
-
export interface __IChatSelectFunctionsApplication {
|
|
4
|
-
/**
|
|
5
|
-
* Select proper API functions to call.
|
|
6
|
-
*
|
|
7
|
-
* If you A.I. agent has found some proper API functions to call
|
|
8
|
-
* from the conversation with user, please select the API functions
|
|
9
|
-
* just by calling this function.
|
|
10
|
-
*
|
|
11
|
-
* When user wants to call a same function multiply, you A.I. agent must
|
|
12
|
-
* list up it multiply in the `functions` property. Otherwise the user has
|
|
13
|
-
* requested to call many different functions, you A.I. agent have to assign
|
|
14
|
-
* them all into the `functions` property.
|
|
15
|
-
*
|
|
16
|
-
* Also, if you A.I. agent can't specify a specific function to call due to lack
|
|
17
|
-
* of specificity or homogeneity of candidate functions, just assign all of them
|
|
18
|
-
* by in the` functions` property` too. Instead, when you A.I. agent can specify
|
|
19
|
-
* a specific function to call, the others would be eliminated.
|
|
20
|
-
*
|
|
21
|
-
* @param props Properties of the function
|
|
22
|
-
*/
|
|
23
|
-
selectFunctions: (props: __IChatFunctionReference.IProps) => Promise<void>;
|
|
24
|
-
}
|
|
1
|
+
import type { __IChatFunctionReference } from "./__IChatFunctionReference";
|
|
2
|
+
|
|
3
|
+
export interface __IChatSelectFunctionsApplication {
|
|
4
|
+
/**
|
|
5
|
+
* Select proper API functions to call.
|
|
6
|
+
*
|
|
7
|
+
* If you A.I. agent has found some proper API functions to call
|
|
8
|
+
* from the conversation with user, please select the API functions
|
|
9
|
+
* just by calling this function.
|
|
10
|
+
*
|
|
11
|
+
* When user wants to call a same function multiply, you A.I. agent must
|
|
12
|
+
* list up it multiply in the `functions` property. Otherwise the user has
|
|
13
|
+
* requested to call many different functions, you A.I. agent have to assign
|
|
14
|
+
* them all into the `functions` property.
|
|
15
|
+
*
|
|
16
|
+
* Also, if you A.I. agent can't specify a specific function to call due to lack
|
|
17
|
+
* of specificity or homogeneity of candidate functions, just assign all of them
|
|
18
|
+
* by in the` functions` property` too. Instead, when you A.I. agent can specify
|
|
19
|
+
* a specific function to call, the others would be eliminated.
|
|
20
|
+
*
|
|
21
|
+
* @param props Properties of the function
|
|
22
|
+
*/
|
|
23
|
+
selectFunctions: (props: __IChatFunctionReference.IProps) => Promise<void>;
|
|
24
|
+
}
|