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.

23 lines (22 loc) 508 B
export interface TweetRecord { id: string; content: string; timestamp: string; metadata: { generationAttempts: number; generationTime: number; characterCount: number; nextScheduledTweet: string; }; } export interface SystemStatus { isOnline: boolean; startTime: string; lastTweet: string; tweetsPosted: number; nextScheduledTweet: string; } export interface StatusResponse { status: SystemStatus; recentTweets: TweetRecord[]; }