floomai
Version:
Floom orchestrates & executes Generative AI pipelines, Empowering Developers and DevOps to focus on what matters.
14 lines (13 loc) • 442 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FloomRequest = void 0;
class FloomRequest {
constructor(pipelineId, prompt, chatId = null, variables = null, dataTransfer = null) {
this.pipelineId = pipelineId;
this.prompt = prompt;
this.chatId = chatId;
this.variables = variables;
this.dataTransfer = dataTransfer;
}
}
exports.FloomRequest = FloomRequest;