UNPKG

recallbricks-sdk

Version:

TypeScript SDK for writing memory chunks to RecallBricks persistent memory infrastructure.

12 lines (11 loc) 210 B
// /lib/types.ts export interface MemoryChunk { id?: string; userId: string; projectId: string; type: string; text: string; embedding: number[]; tags?: string[]; timestamp: string; }