@ai.ntellect/core 0.1.98 → 0.1.99

Sign up to get free protection for your applications and to get access to all the features.
package/dist/types.d.ts CHANGED
@@ -55,7 +55,7 @@ export interface ActionSchema {
55
55
  examples?: {
56
56
  role: string;
57
57
  content: string;
58
- parameters: Record<string, any>;
58
+ parameters?: Record<string, any>;
59
59
  }[];
60
60
  confirmation?: {
61
61
  requireConfirmation: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai.ntellect/core",
3
- "version": "0.1.98",
3
+ "version": "0.1.99",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/types.ts CHANGED
@@ -66,7 +66,7 @@ export interface ActionSchema {
66
66
  examples?: {
67
67
  role: string;
68
68
  content: string;
69
- parameters: Record<string, any>;
69
+ parameters?: Record<string, any>;
70
70
  }[];
71
71
  confirmation?: {
72
72
  requireConfirmation: boolean;