feat(memory): define MemoryAdapter interface types

Co-Authored-By: Claude Opus 4.6 <[email protected]>
This commit is contained in:
2026-04-02 20:44:10 -05:00
co-authored by Claude Opus 4.6
parent e797676a02
commit 41961a6980
2 changed files with 79 additions and 0 deletions
+7
View File
@@ -13,3 +13,10 @@ export {
type SearchResult,
} from './insights.js';
export type { VectorStore, VectorSearchResult, EmbeddingProvider } from './vector-store.js';
export type {
MemoryAdapter,
MemoryConfig,
NewInsight as AdapterNewInsight,
Insight as AdapterInsight,
InsightSearchResult,
} from './types.js';