You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**its actually 15-45 minutes, not 4-8 hours as the comment suggests.**
Also IMO, all the time intervals, replies and search and engage are was too aggressive, I got my agent banned on X in less than 12 hrs of using in on the default settings, maybe we can have way more time intervals to avoid this by default
The text was updated successfully, but these errors were encountered:
We should probably figure out a way to control this. It could be a setting, for tweets / day. To fix the issue, feel free to change the comment. 15-45 is probably too many tweets to drive engagement, its better when it is 4-8.
on src/clients/twitter/generate.ts
export class TwitterGenerationClient extends ClientBase {
onReady() {
const generateNewTweetLoop = () => {
this.generateNewTweet();
setTimeout(
generateNewTweetLoop,
(Math.floor(Math.random() * (45 - 15 + 1)) + 15) * 60 * 1000,
); // Random interval between 4-8 hours
The text was updated successfully, but these errors were encountered: