UNPKG

mcp-memory-ts

Version:

Cloud-based vector MCP memory service for Claude.ai - TypeScript implementation

22 lines 514 B
/** * Sync Configuration Types * Configuration for bidirectional contact sync with deduplication */ /** * Default sync configuration */ export const DEFAULT_SYNC_CONFIG = { deduplication: { threshold: 90, chatgptModel: 'gpt-4o', enableLLMDeduplication: true, maxRetries: 3, retryDelayMs: 1000, }, conflictResolution: { strategy: 'newest', autoMerge: true, preferredSource: undefined, }, }; //# sourceMappingURL=sync-config.js.map