// /lib/types.ts
export interface MemoryChunk {
  id?: string;
  userId: string;
  projectId: string;
  type: string;
  text: string;
  embedding: number[];
  tags?: string[];
  timestamp: string;
}
