/** * Vector Store - Simple wrapper around AgentDB * This is a placeholder - actual implementation should use AgentDB */ export interface Vector { id: string; vector: number[]; metadata: Record; } export declare class VectorStore { private readonly store; private readonly persistPath?; private readonly agentdb; constructor(config: { dimension: number; metric?: string; persistPath?: string; }); initialize(): Promise; insert(_vectors: Vector[]): Promise; retrieve(_ids: string[]): Promise; search(_query: number[], _limit: number): Promise; private persist; } //# sourceMappingURL=VectorStore.d.ts.map