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
21 lines (19 loc) • 360 B
text/typescript
/**
* Shared utilities for RuVector plugins
*/
export {
// Interfaces
IVectorDB,
ILoRAEngine,
LoRAAdapter,
// Fallback implementations
FallbackVectorDB,
FallbackLoRAEngine,
// Factory functions
createVectorDB,
createLoRAEngine,
// Utilities
cosineSimilarity,
generateHashEmbedding,
LazyInitializable,
} from './vector-utils.js';