@elizaos/plugin-bootstrap 0.1.7-alpha.1
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/index.d.ts +65 -0
- package/dist/index.js +2820 -0
- package/dist/index.js.map +1 -0
- package/package.json +19 -0
- package/tsup.config.ts +20 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { Action, Memory, Evaluator, Provider, Plugin } from '@elizaos/core';
|
|
2
|
+
|
|
3
|
+
declare const messageHandlerTemplate: string;
|
|
4
|
+
declare const shouldContinueTemplate: string;
|
|
5
|
+
declare const continueAction: Action;
|
|
6
|
+
|
|
7
|
+
declare const shouldFollowTemplate: string;
|
|
8
|
+
declare const followRoomAction: Action;
|
|
9
|
+
|
|
10
|
+
declare const ignoreAction: Action;
|
|
11
|
+
|
|
12
|
+
declare const shouldMuteTemplate: string;
|
|
13
|
+
declare const muteRoomAction: Action;
|
|
14
|
+
|
|
15
|
+
declare const noneAction: Action;
|
|
16
|
+
|
|
17
|
+
declare const unfollowRoomAction: Action;
|
|
18
|
+
|
|
19
|
+
declare const shouldUnmuteTemplate: string;
|
|
20
|
+
declare const unmuteRoomAction: Action;
|
|
21
|
+
|
|
22
|
+
declare const index$2_continueAction: typeof continueAction;
|
|
23
|
+
declare const index$2_followRoomAction: typeof followRoomAction;
|
|
24
|
+
declare const index$2_ignoreAction: typeof ignoreAction;
|
|
25
|
+
declare const index$2_messageHandlerTemplate: typeof messageHandlerTemplate;
|
|
26
|
+
declare const index$2_muteRoomAction: typeof muteRoomAction;
|
|
27
|
+
declare const index$2_noneAction: typeof noneAction;
|
|
28
|
+
declare const index$2_shouldContinueTemplate: typeof shouldContinueTemplate;
|
|
29
|
+
declare const index$2_shouldFollowTemplate: typeof shouldFollowTemplate;
|
|
30
|
+
declare const index$2_shouldMuteTemplate: typeof shouldMuteTemplate;
|
|
31
|
+
declare const index$2_shouldUnmuteTemplate: typeof shouldUnmuteTemplate;
|
|
32
|
+
declare const index$2_unfollowRoomAction: typeof unfollowRoomAction;
|
|
33
|
+
declare const index$2_unmuteRoomAction: typeof unmuteRoomAction;
|
|
34
|
+
declare namespace index$2 {
|
|
35
|
+
export { index$2_continueAction as continueAction, index$2_followRoomAction as followRoomAction, index$2_ignoreAction as ignoreAction, index$2_messageHandlerTemplate as messageHandlerTemplate, index$2_muteRoomAction as muteRoomAction, index$2_noneAction as noneAction, index$2_shouldContinueTemplate as shouldContinueTemplate, index$2_shouldFollowTemplate as shouldFollowTemplate, index$2_shouldMuteTemplate as shouldMuteTemplate, index$2_shouldUnmuteTemplate as shouldUnmuteTemplate, index$2_unfollowRoomAction as unfollowRoomAction, index$2_unmuteRoomAction as unmuteRoomAction };
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare const formatFacts: (facts: Memory[]) => string;
|
|
39
|
+
declare const factEvaluator: Evaluator;
|
|
40
|
+
|
|
41
|
+
declare const goalEvaluator: Evaluator;
|
|
42
|
+
|
|
43
|
+
declare const index$1_factEvaluator: typeof factEvaluator;
|
|
44
|
+
declare const index$1_formatFacts: typeof formatFacts;
|
|
45
|
+
declare const index$1_goalEvaluator: typeof goalEvaluator;
|
|
46
|
+
declare namespace index$1 {
|
|
47
|
+
export { index$1_factEvaluator as factEvaluator, index$1_formatFacts as formatFacts, index$1_goalEvaluator as goalEvaluator };
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
declare const boredomProvider: Provider;
|
|
51
|
+
|
|
52
|
+
declare const timeProvider: Provider;
|
|
53
|
+
|
|
54
|
+
declare const factsProvider: Provider;
|
|
55
|
+
|
|
56
|
+
declare const index_boredomProvider: typeof boredomProvider;
|
|
57
|
+
declare const index_factsProvider: typeof factsProvider;
|
|
58
|
+
declare const index_timeProvider: typeof timeProvider;
|
|
59
|
+
declare namespace index {
|
|
60
|
+
export { index_boredomProvider as boredomProvider, index_factsProvider as factsProvider, index_timeProvider as timeProvider };
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
declare const bootstrapPlugin: Plugin;
|
|
64
|
+
|
|
65
|
+
export { index$2 as actions, bootstrapPlugin, index$1 as evaluators, index as providers };
|