@agentica/core 0.12.2 → 0.12.5
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.
|
@@ -3,27 +3,27 @@ export declare class AgenticaTokenUsage implements IAgenticaTokenUsageJson {
|
|
|
3
3
|
/**
|
|
4
4
|
* Aggregated token usage.
|
|
5
5
|
*/
|
|
6
|
-
readonly aggregate:
|
|
6
|
+
readonly aggregate: AgenticaTokenUsage.IComponent;
|
|
7
7
|
/**
|
|
8
8
|
* Token uasge of initializer agent.
|
|
9
9
|
*/
|
|
10
|
-
readonly initialize:
|
|
10
|
+
readonly initialize: AgenticaTokenUsage.IComponent;
|
|
11
11
|
/**
|
|
12
12
|
* Token usage of function selector agent.
|
|
13
13
|
*/
|
|
14
|
-
readonly select:
|
|
14
|
+
readonly select: AgenticaTokenUsage.IComponent;
|
|
15
15
|
/**
|
|
16
16
|
* Token usage of function canceler agent.
|
|
17
17
|
*/
|
|
18
|
-
readonly cancel:
|
|
18
|
+
readonly cancel: AgenticaTokenUsage.IComponent;
|
|
19
19
|
/**
|
|
20
20
|
* Token usage of function caller agent.
|
|
21
21
|
*/
|
|
22
|
-
readonly call:
|
|
22
|
+
readonly call: AgenticaTokenUsage.IComponent;
|
|
23
23
|
/**
|
|
24
24
|
* Token usage of function calling describer agent.
|
|
25
25
|
*/
|
|
26
|
-
readonly describe:
|
|
26
|
+
readonly describe: AgenticaTokenUsage.IComponent;
|
|
27
27
|
constructor(props?: IAgenticaTokenUsageJson);
|
|
28
28
|
increment(y: IAgenticaTokenUsageJson): void;
|
|
29
29
|
toJSON(): IAgenticaTokenUsageJson;
|
package/package.json
CHANGED
|
@@ -6,32 +6,32 @@ export class AgenticaTokenUsage implements IAgenticaTokenUsageJson {
|
|
|
6
6
|
/**
|
|
7
7
|
* Aggregated token usage.
|
|
8
8
|
*/
|
|
9
|
-
public readonly aggregate:
|
|
9
|
+
public readonly aggregate: AgenticaTokenUsage.IComponent;
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Token uasge of initializer agent.
|
|
13
13
|
*/
|
|
14
|
-
public readonly initialize:
|
|
14
|
+
public readonly initialize: AgenticaTokenUsage.IComponent;
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* Token usage of function selector agent.
|
|
18
18
|
*/
|
|
19
|
-
public readonly select:
|
|
19
|
+
public readonly select: AgenticaTokenUsage.IComponent;
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* Token usage of function canceler agent.
|
|
23
23
|
*/
|
|
24
|
-
public readonly cancel:
|
|
24
|
+
public readonly cancel: AgenticaTokenUsage.IComponent;
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* Token usage of function caller agent.
|
|
28
28
|
*/
|
|
29
|
-
public readonly call:
|
|
29
|
+
public readonly call: AgenticaTokenUsage.IComponent;
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* Token usage of function calling describer agent.
|
|
33
33
|
*/
|
|
34
|
-
public readonly describe:
|
|
34
|
+
public readonly describe: AgenticaTokenUsage.IComponent;
|
|
35
35
|
|
|
36
36
|
public constructor(props?: IAgenticaTokenUsageJson) {
|
|
37
37
|
if (props === undefined) {
|