@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.
13 lines (12 loc) • 371 B
TypeScript
import { HistoryService } from '../services/history.service';
import type { AgentConfig } from '../types/agent.types';
export declare class APIServer {
private app;
private historyService;
private config;
private server;
constructor(historyService: HistoryService, config: AgentConfig);
private setupRoutes;
start(): void;
stop(): void;
}