-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathignore.ts
246 lines (241 loc) · 6 KB
/
ignore.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import type { Action, ActionExample, IAgentRuntime, Memory } from '../types';
/**
* Action representing the IGNORE action. This action is used when ignoring the user in a conversation.
*
* @type {Action}
* @property {string} name - The name of the action, which is "IGNORE".
* @property {string[]} similes - An array of related similes for the action.
* @property {Function} validate - Asynchronous function that validates the action.
* @property {string} description - Description of when to use the IGNORE action in a conversation.
* @property {Function} handler - Asynchronous function that handles the action logic.
* @property {ActionExample[][]} examples - Array of examples demonstrating the usage of the IGNORE action.
*/
/**
* Represents an action called 'IGNORE'.
*
* This action is used to ignore the user in a conversation. It should be used when the user is aggressive, creepy, or when the conversation has naturally ended.
* Avoid using this action if the user has engaged directly or if there is a need to communicate with them. Use IGNORE only when the user should be ignored.
*
* The action includes a validation function that always returns true and a handler function that also returns true.
*
* Examples of using the IGNORE action are provided in the 'examples' array. Each example includes messages between two parties and the use of the IGNORE action.
*
* @typedef {Action} ignoreAction
*/
export const ignoreAction: Action = {
name: 'IGNORE',
similes: ['STOP_TALKING', 'STOP_CHATTING', 'STOP_CONVERSATION'],
validate: async (_runtime: IAgentRuntime, _message: Memory) => {
return true;
},
description:
'Call this action if ignoring the user. If the user is aggressive, creepy or is finished with the conversation, use this action. Or, if both you and the user have already said goodbye, use this action instead of saying bye again. Use IGNORE any time the conversation has naturally ended. Do not use IGNORE if the user has engaged directly, or if something went wrong an you need to tell them. Only ignore if the user should be ignored.',
handler: async (_runtime: IAgentRuntime, _message: Memory): Promise<boolean> => {
return true;
},
examples: [
[
{
name: '{{name1}}',
content: { text: 'Go screw yourself' },
},
{
name: '{{name2}}',
content: { text: '', actions: ['IGNORE'] },
},
],
[
{
name: '{{name1}}',
content: { text: 'Shut up, bot' },
},
{
name: '{{name2}}',
content: { text: '', actions: ['IGNORE'] },
},
],
[
{
name: '{{name1}}',
content: { text: 'Got any investment advice' },
},
{
name: '{{name2}}',
content: {
text: 'Uh, don’t let the volatility sway your long-term strategy',
},
},
{
name: '{{name1}}',
content: { text: 'Wise words I think' },
},
{
name: '{{name1}}',
content: { text: 'I gotta run, talk to you later' },
},
{
name: '{{name2}}',
content: { text: 'See ya' },
},
{ name: '{{name1}}', content: { text: '' }, actions: ['IGNORE'] },
],
[
{
name: '{{name1}}',
content: { text: 'Gotta go' },
},
{
name: '{{name2}}',
content: { text: 'Okay, talk to you later' },
},
{
name: '{{name1}}',
content: { text: 'Cya' },
},
{
name: '{{name2}}',
content: { text: '', actions: ['IGNORE'] },
},
],
[
{
name: '{{name1}}',
content: { text: 'bye' },
},
{
name: '{{name2}}',
content: { text: 'cya' },
},
{
name: '{{name1}}',
content: { text: '', actions: ['IGNORE'] },
},
],
[
{
name: '{{name1}}',
content: {
text: 'Who added this stupid bot to the chat',
},
},
{
name: '{{name2}}',
content: { text: 'Sorry, am I being annoying' },
},
{
name: '{{name1}}',
content: { text: 'Yeah' },
},
{
name: '{{name1}}',
content: { text: 'PLEASE shut up' },
},
{ name: '{{name2}}', content: { text: '', actions: ['IGNORE'] } },
],
[
{
name: '{{name1}}',
content: {
text: 'ur so dumb',
},
},
{
name: '{{name2}}',
content: {
text: '',
actions: ['IGNORE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'later nerd',
},
},
{
name: '{{name2}}',
content: {
text: 'bye',
},
},
{
name: '{{name1}}',
content: {
text: '',
},
},
{
name: '{{name2}}',
content: {
text: '',
actions: ['IGNORE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'wanna cyber',
},
},
{
name: '{{name2}}',
content: {
text: 'thats inappropriate',
actions: ['IGNORE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'Im out ttyl',
},
},
{
name: '{{name2}}',
content: {
text: 'cya',
},
},
{
name: '{{name2}}',
content: {
text: '',
actions: ['IGNORE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'u there',
},
},
{
name: '{{name2}}',
content: {
text: 'yes how can I help',
},
},
{
name: '{{name1}}',
content: {
text: 'k nvm figured it out',
},
},
{
name: '{{name2}}',
content: {
text: '',
actions: ['IGNORE'],
},
},
],
] as ActionExample[][],
} as Action;