@elizaos/core 1.0.0-beta.52 → 1.0.0-beta.53

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/dist/actions.d.ts CHANGED
@@ -2,17 +2,11 @@ import type { Action } from './types';
2
2
  /**
3
3
  * Composes a set of example conversations based on provided actions and a specified count.
4
4
  * It randomly selects examples from the provided actions and formats them with generated names.
5
+ *
5
6
  * @param actionsData - An array of `Action` objects from which to draw examples.
6
7
  * @param count - The number of examples to generate.
7
8
  * @returns A string containing formatted examples of conversations.
8
9
  */
9
- /**
10
- * Compose a specified number of random action examples from the given actionsData.
11
- *
12
- * @param {Action[]} actionsData - The list of actions to generate examples from.
13
- * @param {number} count - The number of examples to compose.
14
- * @returns {string} The formatted action examples.
15
- */
16
10
  export declare const composeActionExamples: (actionsData: Action[], count: number) => string;
17
11
  /**
18
12
  * Formats the names of the provided actions into a comma-separated string.
@@ -21,7 +15,7 @@ export declare const composeActionExamples: (actionsData: Action[], count: numbe
21
15
  */
22
16
  export declare function formatActionNames(actions: Action[]): string;
23
17
  /**
24
- * Formats the provided actions into a detailed string listing each action's name and description, separated by commas and newlines.
18
+ * Formats the provided actions into a detailed string listing each action's name and description.
25
19
  * @param actions - An array of `Action` objects to format.
26
20
  * @returns A detailed string of actions, including names and descriptions.
27
21
  */
package/dist/index.d.ts CHANGED
@@ -11,3 +11,4 @@ export * from './settings';
11
11
  export * from './utils';
12
12
  export * from './instrumentation/types';
13
13
  export * from './instrumentation/service';
14
+ export * from './sentry/instrument';