UNPKG

@polybiouslabs/polybious

Version:

Polybius is a next-generation intelligent agent framework built for adaptability across diverse domains. It merges contextual awareness, multi-agent collaboration, and predictive reasoning to deliver dynamic, self-optimizing performance.

20 lines (19 loc) 633 B
import { HistoryService } from '../services/history.service'; import type { AgentConfig } from '../types/agent.types'; export declare class TweetScheduler { private twitterService; private aiService; private interval; private historyService; private nextScheduledTweetTime; private config; constructor(historyService: HistoryService, config: AgentConfig); start(): Promise<void>; private getRandomInterval; private isQuietHours; private scheduleTweets; private getQuietHoursEndTime; private sendScheduledTweet; stop(): Promise<void>; getNextScheduledTime(): Date | null; }