We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d32e0 commit 9d9c30dCopy full SHA for 9d9c30d
packages/client-twitter/src/index.ts
@@ -9,7 +9,10 @@ class TwitterAllClient {
9
interaction: TwitterInteractionClient;
10
constructor(runtime: IAgentRuntime) {
11
this.post = new TwitterPostClient(runtime);
12
- this.search = new TwitterSearchClient(runtime);
+ // this.search = new TwitterSearchClient(runtime); // don't start the search client by default
13
+ // this searches topics from character file, but kind of violates consent of random users
14
+ // burns your rate limit and can get your account banned
15
+ // use at your own risk
16
this.interaction = new TwitterInteractionClient(runtime);
17
}
18
0 commit comments