UNPKG

@aksolab/recall

Version:

A memory management package for AI SDK memory functionality

11 lines (10 loc) 255 B
/** * Abstract base class for Archive Provider implementations. * This class defines the interface that all archive providers must implement. */ export class ArchiveProvider { config; constructor(config) { this.config = config; } }