Skip to content

Commit cddc8d0

Browse files
authored
Merge pull request #1931 from elizaOS/tcm-limit-fetchingTimelines
fix: Limit the number of timelines fetched
2 parents a54246e + 872fd0f commit cddc8d0

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

packages/client-twitter/src/base.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -318,16 +318,16 @@ export class ClientBase extends EventEmitter {
318318
return processedTimeline;
319319
}
320320

321-
async fetchTimelineForActions(): Promise<Tweet[]> {
321+
async fetchTimelineForActions(count: number): Promise<Tweet[]> {
322322
elizaLogger.debug("fetching timeline for actions");
323323

324324
const agentUsername = this.twitterConfig.TWITTER_USERNAME;
325325

326326
const homeTimeline =
327327
this.twitterConfig.ACTION_TIMELINE_TYPE ===
328328
ActionTimelineType.Following
329-
? await this.twitterClient.fetchFollowingTimeline(20, [])
330-
: await this.twitterClient.fetchHomeTimeline(20, []);
329+
? await this.twitterClient.fetchFollowingTimeline(count, [])
330+
: await this.twitterClient.fetchHomeTimeline(count, []);
331331

332332
return homeTimeline
333333
.map((tweet) => ({
@@ -357,7 +357,11 @@ export class ClientBase extends EventEmitter {
357357
(media) => media.type === "video"
358358
) || [],
359359
}))
360-
.filter((tweet) => tweet.username !== agentUsername); // do not perform action on self-tweets
360+
.filter((tweet) => tweet.username !== agentUsername) // do not perform action on self-tweets
361+
.slice(0, count);
362+
// TODO: Once the 'count' parameter is fixed in the 'fetchTimeline' method of the 'agent-twitter-client',
363+
// this workaround can be removed.
364+
// Related issue: https://github.com/elizaOS/agent-twitter-client/issues/43
361365
}
362366

363367
async fetchSearchTweets(

packages/client-twitter/src/post.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import { DEFAULT_MAX_TWEET_LENGTH } from "./environment.ts";
1919
import { State } from "@elizaos/core";
2020
import { ActionResponse } from "@elizaos/core";
2121

22+
const MAX_TIMELINES_TO_FETCH = 15;
23+
2224
const twitterPostTemplate = `
2325
# Areas of Expertise
2426
{{knowledge}}
@@ -627,10 +629,9 @@ export class TwitterPostClient {
627629
"twitter"
628630
);
629631

630-
// TODO: Once the 'count' parameter is fixed in the 'fetchTimeline' method of the 'agent-twitter-client',
631-
// we should enable the ability to control the number of items fetched here.
632-
// Related issue: https://github.com/elizaOS/agent-twitter-client/issues/43
633-
const homeTimeline = await this.client.fetchTimelineForActions();
632+
const homeTimeline = await this.client.fetchTimelineForActions(
633+
MAX_TIMELINES_TO_FETCH
634+
);
634635
const maxActionsProcessing =
635636
this.client.twitterConfig.MAX_ACTIONS_PROCESSING;
636637
const processedTimelines = [];

0 commit comments

Comments
 (0)