CoolFace
Apppublic

Leon4gr45/builder

sourceHugging Facemitupdated 2d agoView on Hugging Face
0likes
types.ts25 linesDownload Raw Back to stores
1import type { MultiAgentOrchestrator } from '@/lib/llm/multi-agent-orchestrator';2 3export interface DebugEvent {4  id: string;5  timestamp: number;6  event: string;7  data: any;8  count: number;9  version: number;10}11 12export interface GenerationTask {13  projectId: string;14  projectName: string;15  prompt: string;16  model: string;17  startedAt: number;18  result: 'completed' | 'failed' | null;19  paused: boolean;20  pausedMessage: string | null;21  orchestratorInstance: MultiAgentOrchestrator | null;22  persistedInstance: MultiAgentOrchestrator | null;23  serverTaskId?: string;24}25