File tree 2 files changed +13
-8
lines changed
2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -318,16 +318,16 @@ export class ClientBase extends EventEmitter {
318
318
return processedTimeline ;
319
319
}
320
320
321
- async fetchTimelineForActions ( ) : Promise < Tweet [ ] > {
321
+ async fetchTimelineForActions ( count : number ) : Promise < Tweet [ ] > {
322
322
elizaLogger . debug ( "fetching timeline for actions" ) ;
323
323
324
324
const agentUsername = this . twitterConfig . TWITTER_USERNAME ;
325
325
326
326
const homeTimeline =
327
327
this . twitterConfig . ACTION_TIMELINE_TYPE ===
328
328
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 , [ ] ) ;
331
331
332
332
return homeTimeline
333
333
. map ( ( tweet ) => ( {
@@ -357,7 +357,11 @@ export class ClientBase extends EventEmitter {
357
357
( media ) => media . type === "video"
358
358
) || [ ] ,
359
359
} ) )
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
361
365
}
362
366
363
367
async fetchSearchTweets (
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ import { DEFAULT_MAX_TWEET_LENGTH } from "./environment.ts";
19
19
import { State } from "@elizaos/core" ;
20
20
import { ActionResponse } from "@elizaos/core" ;
21
21
22
+ const MAX_TIMELINES_TO_FETCH = 15 ;
23
+
22
24
const twitterPostTemplate = `
23
25
# Areas of Expertise
24
26
{{knowledge}}
@@ -627,10 +629,9 @@ export class TwitterPostClient {
627
629
"twitter"
628
630
) ;
629
631
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
+ ) ;
634
635
const maxActionsProcessing =
635
636
this . client . twitterConfig . MAX_ACTIONS_PROCESSING ;
636
637
const processedTimelines = [ ] ;
You can’t perform that action at this time.
0 commit comments