You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/api/variables/messageCompletionFooter.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
# Variable: messageCompletionFooter
4
4
5
-
> `const`**messageCompletionFooter**: "\nResponse format should be formatted in a JSON block like this:\n\`\`\`json\n\{\"user\": \"\{\{agentName\}\}\", \"text\": string, \"action\": \"string\"\}\n\`\`\`"
5
+
> `const`**messageCompletionFooter**: "\nResponse format should be formatted in a JSON block like this:\n\`\`\`json\n\{\"user\": \"\{\{agentName\}\}\", \"text\": \"string\", \"action\": \"string\"\}\n\`\`\`"
Copy file name to clipboardexpand all lines: packages/client-twitter/src/post.ts
+9-34
Original file line number
Diff line number
Diff line change
@@ -11,25 +11,24 @@ import {
11
11
import{elizaLogger}from"@ai16z/eliza";
12
12
import{ClientBase}from"./base.ts";
13
13
14
-
consttwitterPostTemplate=`{{timeline}}
15
-
16
-
# Knowledge
14
+
consttwitterPostTemplate=`
15
+
# Areas of Expertise
17
16
{{knowledge}}
18
17
19
-
About {{agentName}} (@{{twitterUserName}}):
18
+
# About {{agentName}} (@{{twitterUserName}}):
20
19
{{bio}}
21
20
{{lore}}
22
-
{{postDirections}}
21
+
{{topics}}
23
22
24
23
{{providers}}
25
24
26
-
{{recentPosts}}
27
-
28
25
{{characterPostExamples}}
29
26
30
-
# Task: Generate a post in the voice and style of {{agentName}}, aka @{{twitterUserName}}
31
-
Write a single sentence post that is {{adjective}} about {{topic}} (without mentioning {{topic}} directly), from the perspective of {{agentName}}. Try to write something totally different than previous posts. Do not add commentary or acknowledge this request, just write the post.
32
-
Your response should not contain any questions. Brief, concise statements only. No emojis. Use \\n\\n (double spaces) between statements.`;
27
+
{{postDirections}}
28
+
29
+
# Task: Generate a post in the voice and style and perspective of {{agentName}} @{{twitterUserName}}.
30
+
Write a 1-3 sentence post that is {{adjective}} about {{topic}} (without mentioning {{topic}} directly), from the perspective of {{agentName}}. Do not add commentary or acknowledge this request, just write the post.
31
+
Your response should not contain any questions. Brief, concise statements only. The total character count MUST be less than 280. No emojis. Use \\n\\n (double spaces) between statements.`;
33
32
34
33
constMAX_TWEET_LENGTH=280;
35
34
@@ -132,28 +131,7 @@ export class TwitterPostClient {
0 commit comments