26 lines
925 B
TypeScript
26 lines
925 B
TypeScript
/**
|
|
* AgentDB Re-exports for Backwards Compatibility
|
|
*
|
|
* This module provides backwards-compatible exports for code that previously
|
|
* used embedded AgentDB controllers. Now proxies to agentdb npm package.
|
|
*
|
|
* @deprecated Import directly from specific agentdb paths for better tree-shaking
|
|
* @since v1.7.0 - Integrated agentdb as proper dependency
|
|
*
|
|
* Example migration:
|
|
* ```typescript
|
|
* // Old (still works)
|
|
* import { ReflexionMemory } from 'agentic-flow/agentdb';
|
|
*
|
|
* // New (recommended)
|
|
* import { ReflexionMemory } from 'agentdb/controllers/ReflexionMemory';
|
|
* ```
|
|
*/
|
|
export { ReflexionMemory } from 'agentdb';
|
|
export { SkillLibrary } from 'agentdb';
|
|
export { EmbeddingService } from 'agentdb';
|
|
export { CausalMemoryGraph } from 'agentdb';
|
|
export { CausalRecall } from 'agentdb';
|
|
export { NightlyLearner } from 'agentdb';
|
|
export { ExplainableRecall } from 'agentdb';
|
|
//# sourceMappingURL=index.d.ts.map
|