lume-ai
Version:
A powerful yet simple library to build your own AI applications.
16 lines (15 loc) • 459 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.History = void 0;
// ===============================
// ===============================
// SECTION | History
// ===============================
/**
* Abstract class for managing message history.
* Implementations should provide methods to add, retrieve, and clear messages based on tags.
*/
class History {
}
exports.History = History;
// ===============================