-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathchoice.ts
331 lines (296 loc) · 9.75 KB
/
choice.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
import { logger } from '../logger';
import { composePrompt, parseJSONObjectFromText } from '../prompts';
import { getUserServerRole } from '../roles';
import {
type Action,
type ActionExample,
type HandlerCallback,
type IAgentRuntime,
type Memory,
ModelType,
type State,
} from '../types';
/**
* Task: Extract selected task and option from user message
*
* Available Tasks:
* {{#each tasks}}
* Task ID: {{taskId}} - {{name}}
* Available options:
* {{#each options}}
* - {{name}}: {{description}}
* {{/each}}
* - ABORT: Cancel this task
* {{/each}}
*
* Recent Messages:
* {{recentMessages}}
*
* Instructions:
* 1. Review the user's message and identify which task and option they are selecting
* 2. Match against the available tasks and their options, including ABORT
* 3. Return the task ID (shortened UUID) and selected option name exactly as listed above
* 4. If no clear selection is made, return null for both fields
*
* Return in JSON format:
* ```json
* {
* "taskId": "string" | null,
* "selectedOption": "OPTION_NAME" | null
* }
* ```
*
* Make sure to include the ```json``` tags around the JSON object.
*/
/**
* Task: Extract selected task and option from user message
*
* Available Tasks:
* {{#each tasks}}
* Task ID: {{taskId}} - {{name}}
* Available options:
* {{#each options}}
* - {{name}}: {{description}}
* {{/each}}
* - ABORT: Cancel this task
*
* {{/each}}
*
* Recent Messages:
* {{recentMessages}}
*
* Instructions:
* 1. Review the user's message and identify which task and option they are selecting
* 2. Match against the available tasks and their options, including ABORT
* 3. Return the task ID (shortened UUID) and selected option name exactly as listed above
* 4. If no clear selection is made, return null for both fields
*
* Return in JSON format:
* ```json
* {
* "taskId": "string" | null,
* "selectedOption": "OPTION_NAME" | null
* }
* ```
*
* Make sure to include the ```json``` tags around the JSON object.
*/
const optionExtractionTemplate = `# Task: Extract selected task and option from user message
# Available Tasks:
{{#each tasks}}
Task ID: {{taskId}} - {{name}}
Available options:
{{#each options}}
- {{name}}: {{description}}
{{/each}}
- ABORT: Cancel this task
{{/each}}
# Recent Messages:
{{recentMessages}}
# Instructions:
1. Review the user's message and identify which task and option they are selecting
2. Match against the available tasks and their options, including ABORT
3. Return the task ID (shortened UUID) and selected option name exactly as listed above
4. If no clear selection is made, return null for both fields
Return in JSON format:
\`\`\`json
{
"taskId": "string" | null,
"selectedOption": "OPTION_NAME" | null
}
\`\`\`
Make sure to include the \`\`\`json\`\`\` tags around the JSON object.`;
/**
* Represents an action that allows selecting an option for a pending task that has multiple options.
* @type {Action}
* @property {string} name - The name of the action
* @property {string[]} similes - Similar words or phrases for the action
* @property {string} description - A brief description of the action
* @property {Function} validate - Asynchronous function to validate the action
* @property {Function} handler - Asynchronous function to handle the action
* @property {ActionExample[][]} examples - Examples demonstrating the usage of the action
*/
export const choiceAction: Action = {
name: 'CHOOSE_OPTION',
similes: ['SELECT_OPTION', 'SELECT', 'PICK', 'CHOOSE'],
description: 'Selects an option for a pending task that has multiple options',
validate: async (runtime: IAgentRuntime, message: Memory, state: State): Promise<boolean> => {
// Get all tasks with options metadata
const pendingTasks = await runtime.getTasks({
roomId: message.roomId,
tags: ['AWAITING_CHOICE'],
});
const room = state.data.room ?? (await runtime.getRoom(message.roomId));
const userRole = await getUserServerRole(runtime, message.entityId, room.serverId);
if (userRole !== 'OWNER' && userRole !== 'ADMIN') {
return false;
}
// Only validate if there are pending tasks with options
return (
pendingTasks && pendingTasks.length > 0 && pendingTasks.some((task) => task.metadata?.options)
);
},
handler: async (
runtime: IAgentRuntime,
message: Memory,
state: State,
_options: any,
callback: HandlerCallback,
responses: Memory[]
): Promise<void> => {
try {
const pendingTasks = await runtime.getTasks({
roomId: message.roomId,
tags: ['AWAITING_CHOICE'],
});
if (!pendingTasks?.length) {
throw new Error('No pending tasks with options found');
}
const tasksWithOptions = pendingTasks.filter((task) => task.metadata?.options);
if (!tasksWithOptions.length) {
throw new Error('No tasks currently have options to select from.');
}
// Format tasks with their options for the LLM, using shortened UUIDs
const formattedTasks = tasksWithOptions.map((task) => {
// Generate a short ID from the task UUID (first 8 characters should be unique enough)
const shortId = task.id.substring(0, 8);
return {
taskId: shortId,
fullId: task.id,
name: task.name,
options: task.metadata.options.map((opt) => ({
name: typeof opt === 'string' ? opt : opt.name,
description: typeof opt === 'string' ? opt : opt.description || opt.name,
})),
};
});
// format tasks as a string
const tasksString = formattedTasks
.map((task) => {
return `Task ID: ${task.taskId} - ${task.name}\nAvailable options:\n${task.options.map((opt) => `- ${opt.name}: ${opt.description}`).join('\n')}`;
})
.join('\n');
const prompt = composePrompt({
state: {
tasks: tasksString,
recentMessages: message.content.text,
},
template: optionExtractionTemplate,
});
const result = await runtime.useModel(ModelType.TEXT_SMALL, {
prompt,
stopSequences: [],
});
const parsed = parseJSONObjectFromText(result);
const { taskId, selectedOption } = parsed;
if (taskId && selectedOption) {
// Find the task by matching the shortened UUID
const taskMap = new Map(formattedTasks.map((task) => [task.taskId, task]));
const taskInfo = taskMap.get(taskId);
if (!taskInfo) {
await callback({
text: `Could not find a task matching ID: ${taskId}. Please try again.`,
actions: ['SELECT_OPTION_ERROR'],
source: message.content.source,
});
return;
}
// Find the actual task using the full UUID
const selectedTask = tasksWithOptions.find((task) => task.id === taskInfo.fullId);
if (!selectedTask) {
await callback({
text: 'Error locating the selected task. Please try again.',
actions: ['SELECT_OPTION_ERROR'],
source: message.content.source,
});
return;
}
if (selectedOption === 'ABORT') {
await runtime.deleteTask(selectedTask.id);
await callback({
text: `Task "${selectedTask.name}" has been cancelled.`,
actions: ['CHOOSE_OPTION_CANCELLED'],
source: message.content.source,
});
return;
}
try {
const taskWorker = runtime.getTaskWorker(selectedTask.name);
await taskWorker.execute(runtime, { option: selectedOption }, selectedTask);
await callback({
text: `Selected option: ${selectedOption} for task: ${selectedTask.name}`,
actions: ['CHOOSE_OPTION'],
source: message.content.source,
});
return;
} catch (error) {
logger.error('Error executing task with option:', error);
await callback({
text: 'There was an error processing your selection.',
actions: ['SELECT_OPTION_ERROR'],
source: message.content.source,
});
return;
}
}
// If no task/option was selected, list available options
let optionsText = 'Please select a valid option from one of these tasks:\n\n';
tasksWithOptions.forEach((task) => {
// Create a shortened UUID for display
const shortId = task.id.substring(0, 8);
optionsText += `**${task.name}** (ID: ${shortId}):\n`;
const options = task.metadata.options.map((opt) =>
typeof opt === 'string' ? opt : opt.name
);
options.push('ABORT');
optionsText += options.map((opt) => `- ${opt}`).join('\n');
optionsText += '\n\n';
});
await callback({
text: optionsText,
actions: ['SELECT_OPTION_INVALID'],
source: message.content.source,
});
} catch (error) {
logger.error('Error in select option handler:', error);
await callback({
text: 'There was an error processing the option selection.',
actions: ['SELECT_OPTION_ERROR'],
source: message.content.source,
});
}
},
examples: [
[
{
name: '{{name1}}',
content: {
text: 'post',
},
},
{
name: '{{name2}}',
content: {
text: 'Selected option: post for task: Confirm Twitter Post',
actions: ['CHOOSE_OPTION'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'I choose cancel',
},
},
{
name: '{{name2}}',
content: {
text: 'Selected option: cancel for task: Confirm Twitter Post',
actions: ['CHOOSE_OPTION'],
},
},
],
] as ActionExample[][],
};
export default choiceAction;