-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathmuteRoom.ts
270 lines (256 loc) · 7.03 KB
/
muteRoom.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
import logger from '../logger';
import { composePromptFromState } from '../prompts';
import { booleanFooter } from '../prompts';
import {
type Action,
type ActionExample,
type HandlerCallback,
type IAgentRuntime,
type Memory,
ModelType,
type State,
} from '../types';
/**
* Template string for deciding if the agent should mute a room and stop responding unless explicitly mentioned.
*
* @type {string}
*/
/**
* Template for deciding if agent should mute a room and stop responding unless explicitly mentioned.
*
* @type {string}
*/
export const shouldMuteTemplate = `# Task: Decide if {{agentName}} should mute this room and stop responding unless explicitly mentioned.
{{recentMessages}}
Should {{agentName}} mute this room and stop responding unless explicitly mentioned?
Respond with YES if:
- The user is being aggressive, rude, or inappropriate
- The user has directly asked {{agentName}} to stop responding or be quiet
- {{agentName}}'s responses are not well-received or are annoying the user(s)
Otherwise, respond with NO.
${booleanFooter}`;
/**
* Action for muting a room, ignoring all messages unless explicitly mentioned.
* Only do this if explicitly asked to, or if you're annoying people.
*
* @name MUTE_ROOM
* @type {Action}
*
* @property {string} name - The name of the action
* @property {string[]} similes - Similar actions related to muting a room
* @property {string} description - Description of the action
* @property {Function} validate - Validation function to check if the room is not already muted
* @property {Function} handler - Handler function to handle muting the room
* @property {ActionExample[][]} examples - Examples of using the action
*/
export const muteRoomAction: Action = {
name: 'MUTE_ROOM',
similes: ['MUTE_CHAT', 'MUTE_CONVERSATION', 'MUTE_ROOM', 'MUTE_THREAD', 'MUTE_CHANNEL'],
description:
"Mutes a room, ignoring all messages unless explicitly mentioned. Only do this if explicitly asked to, or if you're annoying people.",
validate: async (runtime: IAgentRuntime, message: Memory) => {
const roomId = message.roomId;
const roomState = await runtime.getParticipantUserState(roomId, runtime.agentId);
return roomState !== 'MUTED';
},
handler: async (
runtime: IAgentRuntime,
message: Memory,
state?: State,
_options?: { [key: string]: unknown },
_callback?: HandlerCallback,
_responses?: Memory[]
) => {
async function _shouldMute(state: State): Promise<boolean> {
const shouldMutePrompt = composePromptFromState({
state,
template: shouldMuteTemplate, // Define this template separately
});
const response = await runtime.useModel(ModelType.TEXT_SMALL, {
runtime,
prompt: shouldMutePrompt,
stopSequences: [],
});
const cleanedResponse = response.trim().toLowerCase();
// Handle various affirmative responses
if (
cleanedResponse === 'true' ||
cleanedResponse === 'yes' ||
cleanedResponse === 'y' ||
cleanedResponse.includes('true') ||
cleanedResponse.includes('yes')
) {
await runtime.createMemory(
{
entityId: message.entityId,
agentId: message.agentId,
roomId: message.roomId,
content: {
source: message.content.source,
thought: 'I will now mute this room',
actions: ['MUTE_ROOM_STARTED'],
},
metadata: {
type: 'MUTE_ROOM',
},
},
'messages'
);
return true;
}
// Handle various negative responses
if (
cleanedResponse === 'false' ||
cleanedResponse === 'no' ||
cleanedResponse === 'n' ||
cleanedResponse.includes('false') ||
cleanedResponse.includes('no')
) {
await runtime.createMemory(
{
entityId: message.entityId,
agentId: message.agentId,
roomId: message.roomId,
content: {
source: message.content.source,
thought: 'I decided to not mute this room',
actions: ['MUTE_ROOM_FAILED'],
},
metadata: {
type: 'MUTE_ROOM',
},
},
'messages'
);
}
// Default to false if response is unclear
logger.warn(`Unclear boolean response: ${response}, defaulting to false`);
return false;
}
if (await _shouldMute(state)) {
await runtime.setParticipantUserState(message.roomId, runtime.agentId, 'MUTED');
}
const room = state.data.room ?? (await runtime.getRoom(message.roomId));
await runtime.createMemory(
{
entityId: message.entityId,
agentId: message.agentId,
roomId: message.roomId,
content: {
thought: `I muted the room ${room.name}`,
actions: ['MUTE_ROOM_START'],
},
},
'messages'
);
},
examples: [
[
{
name: '{{name1}}',
content: {
text: '{{name3}}, please mute this channel. No need to respond here for now.',
},
},
{
name: '{{name3}}',
content: {
text: 'Got it',
actions: ['MUTE_ROOM'],
},
},
{
name: '{{name2}}',
content: {
text: '@{{name1}} we could really use your input on this',
},
},
],
[
{
name: '{{name1}}',
content: {
text: '{{name3}}, please mute this channel for the time being',
},
},
{
name: '{{name3}}',
content: {
text: 'Understood',
actions: ['MUTE_ROOM'],
},
},
{
name: '{{name2}}',
content: {
text: 'Hey what do you think about this new design',
},
},
{
name: '{{name3}}',
content: {
text: '',
actions: ['IGNORE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: '{{name2}} plz mute this room',
},
},
{
name: '{{name2}}',
content: {
text: 'np going silent',
actions: ['MUTE_ROOM'],
},
},
{
name: '{{name1}}',
content: {
text: 'whos going to the webxr meetup in an hour btw',
},
},
{
name: '{{name2}}',
content: {
text: '',
actions: ['IGNORE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'too many messages here {{name2}}',
},
},
{
name: '{{name1}}',
content: {
text: 'my bad ill mute',
actions: ['MUTE_ROOM'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'yo {{name2}} dont talk in here',
},
},
{
name: '{{name2}}',
content: {
text: 'sry',
actions: ['MUTE_ROOM'],
},
},
],
] as ActionExample[][],
} as Action;