/** * Neural MCP Tools for CLI * * V2 Compatibility - Neural network and ML tools * * ✅ HYBRID Implementation: * - Uses @claude-flow/embeddings for REAL embeddings when available * - Falls back to simulated embeddings when @claude-flow/embeddings not installed * - Pattern storage and search with cosine similarity * - Training progress tracked (actual model training requires external tools) * * Note: For production neural features, use @claude-flow/neural module */ import type { MCPTool } from './types.js'; export declare const neuralTools: MCPTool[]; //# sourceMappingURL=neural-tools.d.ts.map