prompt-version-manager
Version:
Centralized prompt management system for Human Behavior AI agents
38 lines • 975 B
TypeScript
interface DashboardOptions {
repoPath: string;
refreshInterval?: number;
}
export declare class VisualizationDashboard {
private screen;
private grid;
private versioning;
private chainManager;
private chainTracker;
private refreshInterval;
private intervalId?;
private costChart;
private tokenChart;
private providerChart;
private chainFlow;
private commitLog;
private diffView;
private metricsTable;
private statusBar;
constructor(options: DashboardOptions);
private setupWidgets;
private setupKeyBindings;
start(): Promise<void>;
stop(): void;
private refresh;
private updateCostChart;
private updateTokenChart;
private updateProviderChart;
private updateChainFlow;
private updateCommitLog;
private showCommitDiff;
private generateDiff;
private getHistoricalMetrics;
private getLatestMetrics;
}
export {};
//# sourceMappingURL=dashboard.d.ts.map