floomai
Version:
Floom orchestrates & executes Generative AI pipelines, Empowering Developers and DevOps to focus on what matters.
15 lines (14 loc) • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FloomResponse = void 0;
class FloomResponse {
constructor(messageId = null, chatId = null, values = null, processingTime = null, tokenUsage = null, error = null) {
this.messageId = messageId;
this.chatId = chatId;
this.values = values;
this.processingTime = processingTime;
this.tokenUsage = tokenUsage;
this.error = error;
}
}
exports.FloomResponse = FloomResponse;