/** * Orchestrator Agent * Coordinates the multi-agent analysis and merges results * * @deprecated Use runPlanningOrchestrator + runSynthesisAgent instead. * This agent is kept for backward compatibility. */ import type { LanguageModel } from 'ai'; import type { CodebaseAnalysis, StackResearch, MultiAgentAnalysis, McpRecommendations, OrchestratorInput } from './types.js'; /** * Run the Orchestrator to merge results and recommend MCP servers */ export declare function runOrchestrator(model: LanguageModel, modelId: string, input: OrchestratorInput, verbose?: boolean): Promise; /** * Merge all agent results into a final MultiAgentAnalysis */ export declare function mergeAgentResults(codebaseAnalysis: CodebaseAnalysis, stackResearch: StackResearch, mcpServers: McpRecommendations): MultiAgentAnalysis;