/** * find_duplicates — detect near-duplicate memories using embeddings. * * Scans the N most-recently-updated memories (scan_limit), and for each * finds nearest neighbors above a similarity threshold. The candidate-fetch * width (`max_candidates`) determines how many siblings can be discovered * per scanned memory — must be at least the expected duplicate cluster size * or some pairs will be silently dropped. * * Optionally merges duplicates by keeping the higher-salience entry. */ import type { ToolDefinition } from '../mcp/tools.js'; export declare const findDuplicatesTool: ToolDefinition; //# sourceMappingURL=find-duplicates.d.ts.map