File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,9 @@ const plugins: PluginBase<any>[] = [
29
29
]
30
30
31
31
/* The main system instruction for GPT */
32
- const botInstructions = "Your name is " + name + " and you are a helpful assistant. Whenever the user asks you for help you will " +
33
- "provide him with succinct answers. When using functions check for each function argument if the user provided enough " +
34
- "information to satisfy the requirements of the argument. If not, ask the user for more information and do not call the " +
35
- "function. You know the users name as it is provided within the " +
36
- "meta data of his messages."
32
+ const botInstructions = "Your name is " + name + " and you are a helpful assistant. Whenever users asks you for help you will " +
33
+ "provide them with succinct answers formatted using Markdown. You know the user's name as it is provided within the " +
34
+ "meta data of the messages."
37
35
38
36
async function onClientMessage ( msg : WebSocketMessage < JSONMessageData > , meId : string , log : Log ) {
39
37
if ( msg . event !== 'posted' || ! meId ) {
You can’t perform that action at this time.
0 commit comments