UNPKG

codecrucible-synth

Version:

Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability

14 lines 712 B
/** * Code Analyzer Agent - Performs sophisticated code analysis using the Ollama (quality) backend * Integrates with the existing UnifiedAgent system and voice archetypes */ import { UnifiedAgent } from '../agent.js'; import { ExecutionResponse } from '../types.js'; import { UnifiedModelClient } from '../../refactor/unified-model-client.js'; import { PerformanceMonitor } from '../../utils/performance.js'; export declare class CodeAnalyzerAgent extends UnifiedAgent { constructor(modelClient: UnifiedModelClient, performanceMonitor: PerformanceMonitor); processRequest(input: string): Promise<ExecutionResponse>; private enhanceCodeAnalysis; } //# sourceMappingURL=code-analyzer-agent.d.ts.map