@ai.ntellect/core 0.1.95 ā 0.1.97
Sign up to get free protection for your applications and to get access to all the features.
- package/agent/index.ts +10 -11
- package/llm/evaluator/index.ts +0 -1
- package/package.json +1 -1
- package/types.ts +5 -0
- package/utils/inject-actions.ts +13 -1
package/agent/index.ts
CHANGED
@@ -78,6 +78,16 @@ export class Agent {
|
|
78
78
|
);
|
79
79
|
events.onMessage?.(request);
|
80
80
|
|
81
|
+
const isOnChainAction = request.actions.some(
|
82
|
+
(action) => action.type === "on-chain"
|
83
|
+
);
|
84
|
+
|
85
|
+
if (isOnChainAction) {
|
86
|
+
return {
|
87
|
+
data: this.accumulatedResults,
|
88
|
+
initialPrompt: prompt,
|
89
|
+
};
|
90
|
+
}
|
81
91
|
return request.actions.length > 0
|
82
92
|
? this.handleActions(
|
83
93
|
{
|
@@ -120,22 +130,11 @@ export class Agent {
|
|
120
130
|
}
|
121
131
|
);
|
122
132
|
|
123
|
-
const isOnChainAction = actions.some(
|
124
|
-
(action) => action.type === "on-chain"
|
125
|
-
);
|
126
|
-
|
127
133
|
this.accumulatedResults = [
|
128
134
|
...this.accumulatedResults,
|
129
135
|
...actionsResult.data,
|
130
136
|
];
|
131
137
|
|
132
|
-
if (isOnChainAction) {
|
133
|
-
return {
|
134
|
-
data: this.accumulatedResults,
|
135
|
-
initialPrompt,
|
136
|
-
};
|
137
|
-
}
|
138
|
-
|
139
138
|
if (this.evaluatorIteration >= this.maxEvaluatorIteration) {
|
140
139
|
return this.handleActionResults({
|
141
140
|
data: this.accumulatedResults,
|
package/llm/evaluator/index.ts
CHANGED
package/package.json
CHANGED
package/types.ts
CHANGED
@@ -63,6 +63,11 @@ export interface ActionSchema {
|
|
63
63
|
[key: string]: z.ZodType;
|
64
64
|
}>;
|
65
65
|
execute: (args: any) => Promise<any>;
|
66
|
+
examples?: {
|
67
|
+
role: string;
|
68
|
+
content: string;
|
69
|
+
parameters: Record<string, any>;
|
70
|
+
}[];
|
66
71
|
confirmation?: {
|
67
72
|
requireConfirmation: boolean;
|
68
73
|
message: string;
|
package/utils/inject-actions.ts
CHANGED
@@ -5,7 +5,19 @@ export const injectActions = (actions: ActionSchema[]) => {
|
|
5
5
|
return actions.map((action) => {
|
6
6
|
const parameters = action.parameters as z.ZodObject<any>;
|
7
7
|
const schemaShape = Object.keys(parameters._def.shape()).join(", ");
|
8
|
-
const actionString = `Name: ${action.name}, Description: ${
|
8
|
+
const actionString = `Name: ${action.name}, Description: ${
|
9
|
+
action.description
|
10
|
+
}, Arguments (STRICTLY REQUIRED): { ${schemaShape} } ${
|
11
|
+
action.examples
|
12
|
+
? `Examples: ${action.examples
|
13
|
+
.map((e: any) => {
|
14
|
+
return `Role: ${e.role}, Content: ${
|
15
|
+
e.content
|
16
|
+
}, Parameters: { ${Object.keys(e.parameters).join(", ")} }`;
|
17
|
+
})
|
18
|
+
.join("\n")}`
|
19
|
+
: ""
|
20
|
+
}`;
|
9
21
|
return actionString;
|
10
22
|
});
|
11
23
|
};
|