Skip to content

Commit

Permalink
Comment search function out
Browse files Browse the repository at this point in the history
  • Loading branch information
dontAskVI committed Dec 11, 2024
1 parent 10d6e43 commit c6b00c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client-twitter/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TwitterManager {
constructor(runtime: IAgentRuntime) {
this.client = new ClientBase(runtime);
this.post = new TwitterPostClient(this.client, runtime);
this.search = new TwitterSearchClient(this.client, runtime); // don't start the search client by default
//this.search = new TwitterSearchClient(this.client, runtime); // don't start the search client by default
// this searches topics from character file, but kind of violates consent of random users
// burns your rate limit and can get your account banned
// use at your own risk
Expand All @@ -35,7 +35,7 @@ export const TwitterClientInterface: Client = {

await manager.interaction.start();

await manager.search.start(); // don't run the search by default
//await manager.search.start(); // don't run the search by default

return manager;
},
Expand Down

0 comments on commit c6b00c6

Please sign in to comment.