Skip to content

Commit 409c14c

Browse files
authored
Merge pull request #765 from ai16z/shaw/update-env
Update environment, add twitter quality of life updates
2 parents 585ee23 + a62445b commit 409c14c

File tree

8 files changed

+236
-246
lines changed

8 files changed

+236
-246
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,6 @@ cache/*
4444
packages/plugin-coinbase/src/plugins/transactions.csv
4545
packages/plugin-coinbase/package-lock.json
4646

47-
.turbo
47+
tsup.config.bundled_*.mjs
48+
49+
.turbo

docs/api/variables/messageCompletionFooter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Variable: messageCompletionFooter
44

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\`\`\`"
66
77
## Defined in
88

packages/client-twitter/src/enviroment.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export async function validateTwitterConfig(
2020
const config = {
2121
TWITTER_DRY_RUN:
2222
runtime.getSetting("TWITTER_DRY_RUN") ||
23-
process.env.TWITTER_DRY_RUN,
23+
process.env.TWITTER_DRY_RUN ||
24+
"false",
2425
TWITTER_USERNAME:
2526
runtime.getSetting("TWITTER_USERNAME") ||
2627
process.env.TWITTER_USERNAME,

packages/client-twitter/src/interactions.ts

+3-25
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,11 @@ import { ClientBase } from "./base";
1919
import { buildConversationThread, sendTweet, wait } from "./utils.ts";
2020

2121
export const twitterMessageHandlerTemplate =
22-
`{{timeline}}
23-
24-
# Knowledge
22+
`
23+
# Areas of Expertise
2524
{{knowledge}}
2625
27-
# Task: Generate a post for the character {{agentName}}.
28-
About {{agentName}} (@{{twitterUserName}}):
26+
# About {{agentName}} (@{{twitterUserName}}):
2927
{{bio}}
3028
{{lore}}
3129
{{topics}}
@@ -226,17 +224,6 @@ export class TwitterInteractionClient {
226224
};
227225
const currentPost = formatTweet(tweet);
228226

229-
let homeTimeline: Tweet[] = [];
230-
// read the file if it exists
231-
232-
const cachedTimeline = await this.client.getCachedTimeline();
233-
if (cachedTimeline) {
234-
homeTimeline = cachedTimeline;
235-
} else {
236-
homeTimeline = await this.client.fetchHomeTimeline(50);
237-
await this.client.cacheTimeline(homeTimeline);
238-
}
239-
240227
elizaLogger.debug("Thread: ", thread);
241228
const formattedConversation = thread
242229
.map(
@@ -254,20 +241,11 @@ export class TwitterInteractionClient {
254241

255242
elizaLogger.debug("formattedConversation: ", formattedConversation);
256243

257-
const formattedHomeTimeline =
258-
`# ${this.runtime.character.name}'s Home Timeline\n\n` +
259-
homeTimeline
260-
.map((tweet) => {
261-
return `ID: ${tweet.id}\nFrom: ${tweet.name} (@${tweet.username})${tweet.inReplyToStatusId ? ` In reply to: ${tweet.inReplyToStatusId}` : ""}\nText: ${tweet.text}\n---\n`;
262-
})
263-
.join("\n");
264-
265244
let state = await this.runtime.composeState(message, {
266245
twitterClient: this.client.twitterClient,
267246
twitterUserName: this.runtime.getSetting("TWITTER_USERNAME"),
268247
currentPost,
269248
formattedConversation,
270-
timeline: formattedHomeTimeline,
271249
});
272250

273251
// check if the tweet exists, save if it doesn't

packages/client-twitter/src/post.ts

+9-34
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,24 @@ import {
1111
import { elizaLogger } from "@ai16z/eliza";
1212
import { ClientBase } from "./base.ts";
1313

14-
const twitterPostTemplate = `{{timeline}}
15-
16-
# Knowledge
14+
const twitterPostTemplate = `
15+
# Areas of Expertise
1716
{{knowledge}}
1817
19-
About {{agentName}} (@{{twitterUserName}}):
18+
# About {{agentName}} (@{{twitterUserName}}):
2019
{{bio}}
2120
{{lore}}
22-
{{postDirections}}
21+
{{topics}}
2322
2423
{{providers}}
2524
26-
{{recentPosts}}
27-
2825
{{characterPostExamples}}
2926
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.`;
3332

3433
const MAX_TWEET_LENGTH = 280;
3534

@@ -132,28 +131,7 @@ export class TwitterPostClient {
132131
"twitter"
133132
);
134133

135-
let homeTimeline: Tweet[] = [];
136-
137-
const cachedTimeline = await this.client.getCachedTimeline();
138-
139-
// console.log({ cachedTimeline });
140-
141-
if (cachedTimeline) {
142-
homeTimeline = cachedTimeline;
143-
} else {
144-
homeTimeline = await this.client.fetchHomeTimeline(10);
145-
await this.client.cacheTimeline(homeTimeline);
146-
}
147-
const formattedHomeTimeline =
148-
`# ${this.runtime.character.name}'s Home Timeline\n\n` +
149-
homeTimeline
150-
.map((tweet) => {
151-
return `#${tweet.id}\n${tweet.name} (@${tweet.username})${tweet.inReplyToStatusId ? `\nIn reply to: ${tweet.inReplyToStatusId}` : ""}\n${new Date(tweet.timestamp).toDateString()}\n\n${tweet.text}\n---\n`;
152-
})
153-
.join("\n");
154-
155134
const topics = this.runtime.character.topics.join(", ");
156-
157135
const state = await this.runtime.composeState(
158136
{
159137
userId: this.runtime.agentId,
@@ -166,7 +144,6 @@ export class TwitterPostClient {
166144
},
167145
{
168146
twitterUserName: this.client.profile.username,
169-
timeline: formattedHomeTimeline,
170147
}
171148
);
172149

@@ -243,8 +220,6 @@ export class TwitterPostClient {
243220

244221
await this.client.cacheTweet(tweet);
245222

246-
homeTimeline.push(tweet);
247-
await this.client.cacheTimeline(homeTimeline);
248223
elizaLogger.log(`Tweet posted:\n ${tweet.permanentUrl}`);
249224

250225
const roomId = stringToUuid(

packages/core/src/providers.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ export async function getProviders(
1212
message: Memory,
1313
state?: State
1414
) {
15-
const providerResults = await Promise.all(
16-
runtime.providers.map(async (provider) => {
17-
return await provider.get(runtime, message, state);
18-
})
19-
);
15+
const providerResults = (
16+
await Promise.all(
17+
runtime.providers.map(async (provider) => {
18+
return await provider.get(runtime, message, state);
19+
})
20+
)
21+
).filter((result) => result != null && result !== "");
2022

2123
return providerResults.join("\n");
2224
}

packages/plugin-solana/src/providers/wallet.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,10 @@ const walletProvider: Provider = {
372372
try {
373373
const publicKey = runtime.getSetting("SOLANA_PUBLIC_KEY");
374374
if (!publicKey) {
375-
throw new Error("SOLANA_PUBLIC_KEY not configured");
375+
console.error(
376+
"SOLANA_PUBLIC_KEY not configured, skipping wallet injection"
377+
);
378+
return "";
376379
}
377380

378381
const connection = new Connection(

0 commit comments

Comments
 (0)