lume-ai
Version:
A powerful yet simple library to build your own AI applications.
16 lines (15 loc) • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LLM = void 0;
// ===============================
// ===============================
// SECTION | LLM
// ===============================
/**
* Abstract class representing a Large Language Model (LLM) interface.
* Implementations should provide a way to get responses from the LLM
*/
class LLM {
}
exports.LLM = LLM;
// ===============================