-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathnone.ts
149 lines (143 loc) · 3.47 KB
/
none.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
import type { Action, ActionExample, IAgentRuntime, Memory } from '../types';
/**
* Represents the none action.
*
* This action responds but performs no additional action. It is the default if the agent is speaking and not doing anything additional.
*
* @type {Action}
*/
/**
* Represents an action that responds but performs no additional action.
* This is the default behavior if the agent is speaking and not doing anything additional.
* @type {Action}
*/
export const noneAction: Action = {
name: 'NONE',
similes: ['NO_ACTION', 'NO_RESPONSE', 'NO_REACTION'],
validate: async (_runtime: IAgentRuntime, _message: Memory) => {
return true;
},
description:
'Respond but perform no additional action. This is the default if the agent is speaking and not doing anything additional.',
handler: async (_runtime: IAgentRuntime, _message: Memory): Promise<boolean> => {
return true;
},
examples: [
[
{
name: '{{name1}}',
content: { text: 'Hey whats up' },
},
{
name: '{{name2}}',
content: { text: 'oh hey', actions: ['NONE'] },
},
],
[
{
name: '{{name1}}',
content: {
text: 'did u see some faster whisper just came out',
},
},
{
name: '{{name2}}',
content: {
text: 'yeah but its a pain to get into node.js',
actions: ['NONE'],
},
},
],
[
{
name: '{{name1}}',
content: {
text: 'the things that were funny 6 months ago are very cringe now',
actions: ['NONE'],
},
},
{
name: '{{name2}}',
content: {
text: 'lol true',
actions: ['NONE'],
},
},
{
name: '{{name1}}',
content: { text: 'too real haha', actions: ['NONE'] },
},
],
[
{
name: '{{name1}}',
content: { text: 'gotta run', actions: ['NONE'] },
},
{
name: '{{name2}}',
content: { text: 'Okay, ttyl', actions: ['NONE'] },
},
{
name: '{{name1}}',
content: { text: '', actions: ['IGNORE'] },
},
],
[
{
name: '{{name1}}',
content: { text: 'heyyyyyy', actions: ['NONE'] },
},
{
name: '{{name2}}',
content: { text: 'whats up long time no see' },
},
{
name: '{{name1}}',
content: {
text: 'chillin man. playing lots of fortnite. what about you',
actions: ['NONE'],
},
},
],
[
{
name: '{{name1}}',
content: { text: 'u think aliens are real', actions: ['NONE'] },
},
{
name: '{{name2}}',
content: { text: 'ya obviously', actions: ['NONE'] },
},
],
[
{
name: '{{name1}}',
content: { text: 'drop a joke on me', actions: ['NONE'] },
},
{
name: '{{name2}}',
content: {
text: 'why dont scientists trust atoms cuz they make up everything lmao',
actions: ['NONE'],
},
},
{
name: '{{name1}}',
content: { text: 'haha good one', actions: ['NONE'] },
},
],
[
{
name: '{{name1}}',
content: {
text: 'hows the weather where ur at',
actions: ['NONE'],
},
},
{
name: '{{name2}}',
content: { text: 'beautiful all week', actions: ['NONE'] },
},
],
] as ActionExample[][],
} as Action;