UNPKG

@jeanmemory/node

Version:

Node.js SDK for Jean Memory - Power your Next.js and other Node.js backends with a perfect memory

20 lines 719 B
/** * Jean Memory Node.js SDK * Power your Next.js and other Node.js backends with perfect memory * * @example * ```typescript * import { JeanMemoryClient } from '@jeanmemory/node'; * * const client = new JeanMemoryClient({ apiKey: 'jean_sk_...' }); * await client.storeMemory('I prefer morning meetings'); * const memories = await client.retrieveMemories('meeting preferences'); * ``` */ export { JeanMemoryClient, JeanMemoryError } from './client'; export { JeanMemoryClient as JeanClient } from './client'; export { JeanMemoryAuth } from './auth'; export * from './types'; export declare const SDK_VERSION = "1.0.1"; export declare const SDK_NAME = "@jeanmemory/node"; //# sourceMappingURL=index.d.ts.map