@ai.ntellect/core 0.1.98 → 0.1.100
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types.d.ts +1 -1
- package/dist/utils/inject-actions.js +3 -1
- package/package.json +1 -1
- package/types.ts +1 -1
- package/utils/inject-actions.ts +5 -3
package/dist/types.d.ts
CHANGED
@@ -8,7 +8,9 @@ const injectActions = (actions) => {
|
|
8
8
|
const actionString = `Name: ${action.name}, Description: ${action.description}, Arguments (STRICTLY REQUIRED): { ${schemaShape} } ${action.examples
|
9
9
|
? `Examples: ${action.examples
|
10
10
|
.map((e) => {
|
11
|
-
return `Role: ${e.role}, Content: ${e.content}, Parameters:
|
11
|
+
return `Role: ${e.role}, Content: ${e.content}, Parameters: ${e.parameters
|
12
|
+
? `{ ${Object.keys(e.parameters).join(", ")} }`
|
13
|
+
: ""}`;
|
12
14
|
})
|
13
15
|
.join("\n")}`
|
14
16
|
: ""}`;
|
package/package.json
CHANGED
package/types.ts
CHANGED
package/utils/inject-actions.ts
CHANGED
@@ -11,9 +11,11 @@ export const injectActions = (actions: ActionSchema[]) => {
|
|
11
11
|
action.examples
|
12
12
|
? `Examples: ${action.examples
|
13
13
|
.map((e: any) => {
|
14
|
-
return `Role: ${e.role}, Content: ${
|
15
|
-
e.
|
16
|
-
|
14
|
+
return `Role: ${e.role}, Content: ${e.content}, Parameters: ${
|
15
|
+
e.parameters
|
16
|
+
? `{ ${Object.keys(e.parameters).join(", ")} }`
|
17
|
+
: ""
|
18
|
+
}`;
|
17
19
|
})
|
18
20
|
.join("\n")}`
|
19
21
|
: ""
|