@elizaos/prompts 2.0.0-alpha.43 → 2.0.0-alpha.430
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/python/prompts.py +828 -244
- package/dist/rust/prompts.rs +809 -245
- package/dist/typescript/index.d.ts +40 -0
- package/dist/typescript/index.ts +846 -242
- package/package.json +6 -7
- package/prompts/add_contact.txt +29 -0
- package/prompts/choose_option.txt +4 -7
- package/prompts/extract_secret_operation.txt +20 -0
- package/prompts/extract_secret_request.txt +16 -0
- package/prompts/extract_secrets.txt +17 -0
- package/prompts/image_description.txt +8 -15
- package/prompts/image_generation.txt +4 -7
- package/prompts/initial_summarization.txt +28 -0
- package/prompts/long_term_extraction.txt +128 -0
- package/prompts/message_classifier.txt +37 -0
- package/prompts/message_handler.txt +44 -70
- package/prompts/multi_step_decision.txt +6 -18
- package/prompts/multi_step_summary.txt +4 -10
- package/prompts/option_extraction.txt +4 -9
- package/prompts/post_action_decision.txt +35 -0
- package/prompts/post_creation.txt +14 -25
- package/prompts/reflection.txt +8 -11
- package/prompts/reflection_evaluator.txt +37 -32
- package/prompts/remove_contact.txt +20 -0
- package/prompts/reply.txt +5 -8
- package/prompts/schedule_follow_up.txt +28 -0
- package/prompts/search_contacts.txt +23 -0
- package/prompts/should_follow_room.txt +18 -0
- package/prompts/should_mute_room.txt +18 -0
- package/prompts/should_respond.txt +37 -37
- package/prompts/should_respond_with_context.txt +41 -0
- package/prompts/should_unfollow_room.txt +18 -0
- package/prompts/should_unmute_room.txt +18 -0
- package/prompts/think.txt +25 -0
- package/prompts/update_contact.txt +27 -0
- package/prompts/update_entity.txt +6 -13
- package/prompts/update_role.txt +29 -0
- package/prompts/update_settings.txt +5 -12
- package/prompts/update_summarization.txt +30 -0
- package/scripts/generate-action-docs.js +18 -1
- package/scripts/generate-plugin-action-spec.js +1 -0
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
* Auto-generated type definitions for elizaOS prompts
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
export declare const addContactTemplate: string;
|
|
6
|
+
export declare const ADD_CONTACT_TEMPLATE: string;
|
|
5
7
|
export declare const autonomyContinuousContinueTemplate: string;
|
|
6
8
|
export declare const AUTONOMY_CONTINUOUS_CONTINUE_TEMPLATE: string;
|
|
7
9
|
export declare const autonomyContinuousFirstTemplate: string;
|
|
@@ -12,10 +14,22 @@ export declare const autonomyTaskFirstTemplate: string;
|
|
|
12
14
|
export declare const AUTONOMY_TASK_FIRST_TEMPLATE: string;
|
|
13
15
|
export declare const chooseOptionTemplate: string;
|
|
14
16
|
export declare const CHOOSE_OPTION_TEMPLATE: string;
|
|
17
|
+
export declare const extractSecretOperationTemplate: string;
|
|
18
|
+
export declare const EXTRACT_SECRET_OPERATION_TEMPLATE: string;
|
|
19
|
+
export declare const extractSecretRequestTemplate: string;
|
|
20
|
+
export declare const EXTRACT_SECRET_REQUEST_TEMPLATE: string;
|
|
21
|
+
export declare const extractSecretsTemplate: string;
|
|
22
|
+
export declare const EXTRACT_SECRETS_TEMPLATE: string;
|
|
15
23
|
export declare const imageDescriptionTemplate: string;
|
|
16
24
|
export declare const IMAGE_DESCRIPTION_TEMPLATE: string;
|
|
17
25
|
export declare const imageGenerationTemplate: string;
|
|
18
26
|
export declare const IMAGE_GENERATION_TEMPLATE: string;
|
|
27
|
+
export declare const initialSummarizationTemplate: string;
|
|
28
|
+
export declare const INITIAL_SUMMARIZATION_TEMPLATE: string;
|
|
29
|
+
export declare const longTermExtractionTemplate: string;
|
|
30
|
+
export declare const LONG_TERM_EXTRACTION_TEMPLATE: string;
|
|
31
|
+
export declare const messageClassifierTemplate: string;
|
|
32
|
+
export declare const MESSAGE_CLASSIFIER_TEMPLATE: string;
|
|
19
33
|
export declare const messageHandlerTemplate: string;
|
|
20
34
|
export declare const MESSAGE_HANDLER_TEMPLATE: string;
|
|
21
35
|
export declare const multiStepDecisionTemplate: string;
|
|
@@ -24,19 +38,45 @@ export declare const multiStepSummaryTemplate: string;
|
|
|
24
38
|
export declare const MULTI_STEP_SUMMARY_TEMPLATE: string;
|
|
25
39
|
export declare const optionExtractionTemplate: string;
|
|
26
40
|
export declare const OPTION_EXTRACTION_TEMPLATE: string;
|
|
41
|
+
export declare const postActionDecisionTemplate: string;
|
|
42
|
+
export declare const POST_ACTION_DECISION_TEMPLATE: string;
|
|
27
43
|
export declare const postCreationTemplate: string;
|
|
28
44
|
export declare const POST_CREATION_TEMPLATE: string;
|
|
29
45
|
export declare const reflectionEvaluatorTemplate: string;
|
|
30
46
|
export declare const REFLECTION_EVALUATOR_TEMPLATE: string;
|
|
31
47
|
export declare const reflectionTemplate: string;
|
|
32
48
|
export declare const REFLECTION_TEMPLATE: string;
|
|
49
|
+
export declare const removeContactTemplate: string;
|
|
50
|
+
export declare const REMOVE_CONTACT_TEMPLATE: string;
|
|
33
51
|
export declare const replyTemplate: string;
|
|
34
52
|
export declare const REPLY_TEMPLATE: string;
|
|
53
|
+
export declare const scheduleFollowUpTemplate: string;
|
|
54
|
+
export declare const SCHEDULE_FOLLOW_UP_TEMPLATE: string;
|
|
55
|
+
export declare const searchContactsTemplate: string;
|
|
56
|
+
export declare const SEARCH_CONTACTS_TEMPLATE: string;
|
|
57
|
+
export declare const shouldFollowRoomTemplate: string;
|
|
58
|
+
export declare const SHOULD_FOLLOW_ROOM_TEMPLATE: string;
|
|
59
|
+
export declare const shouldMuteRoomTemplate: string;
|
|
60
|
+
export declare const SHOULD_MUTE_ROOM_TEMPLATE: string;
|
|
35
61
|
export declare const shouldRespondTemplate: string;
|
|
36
62
|
export declare const SHOULD_RESPOND_TEMPLATE: string;
|
|
63
|
+
export declare const shouldRespondWithContextTemplate: string;
|
|
64
|
+
export declare const SHOULD_RESPOND_WITH_CONTEXT_TEMPLATE: string;
|
|
65
|
+
export declare const shouldUnfollowRoomTemplate: string;
|
|
66
|
+
export declare const SHOULD_UNFOLLOW_ROOM_TEMPLATE: string;
|
|
67
|
+
export declare const shouldUnmuteRoomTemplate: string;
|
|
68
|
+
export declare const SHOULD_UNMUTE_ROOM_TEMPLATE: string;
|
|
69
|
+
export declare const thinkTemplate: string;
|
|
70
|
+
export declare const THINK_TEMPLATE: string;
|
|
71
|
+
export declare const updateContactTemplate: string;
|
|
72
|
+
export declare const UPDATE_CONTACT_TEMPLATE: string;
|
|
37
73
|
export declare const updateEntityTemplate: string;
|
|
38
74
|
export declare const UPDATE_ENTITY_TEMPLATE: string;
|
|
75
|
+
export declare const updateRoleTemplate: string;
|
|
76
|
+
export declare const UPDATE_ROLE_TEMPLATE: string;
|
|
39
77
|
export declare const updateSettingsTemplate: string;
|
|
40
78
|
export declare const UPDATE_SETTINGS_TEMPLATE: string;
|
|
79
|
+
export declare const updateSummarizationTemplate: string;
|
|
80
|
+
export declare const UPDATE_SUMMARIZATION_TEMPLATE: string;
|
|
41
81
|
export declare const booleanFooter: string;
|
|
42
82
|
export declare const BOOLEAN_FOOTER: string;
|