claude-flow
Version:
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
16 lines • 633 B
TypeScript
/**
* Neural MCP Tools for CLI
*
* V2 Compatibility - Neural network and ML tools
*
* ✅ HYBRID Implementation:
* - Uses @claude-flow/embeddings for REAL ML embeddings when available
* - Falls back to deterministic hash-based embeddings when ML model not installed
* - Pattern storage and search with cosine similarity (real math in all tiers)
* - Training stores patterns as searchable embeddings (not simulated)
*
* 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