feat(memory): define MemoryAdapter interface types

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jarvis
2026-04-02 20:24:16 -05:00
parent e797676a02
commit 41961a6980
2 changed files with 79 additions and 0 deletions

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';