UNPKG

@kangthink/q-engine

Version:

A question-answer generation engine that stimulates thinking

41 lines 1.84 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AnswerLength = exports.MatrixDirection = exports.MatrixLevel = exports.TransformMode = exports.NodeType = void 0; var NodeType; (function (NodeType) { NodeType["QUESTION"] = "QUESTION"; NodeType["ANSWER"] = "ANSWER"; })(NodeType || (exports.NodeType = NodeType = {})); var TransformMode; (function (TransformMode) { TransformMode["FIVE_W_ONE_H"] = "FIVE_W_ONE_H"; TransformMode["SOCRATIC"] = "SOCRATIC"; TransformMode["MATRIX"] = "MATRIX"; TransformMode["SCIENTIFIC"] = "SCIENTIFIC"; TransformMode["ANSWER"] = "ANSWER"; })(TransformMode || (exports.TransformMode = TransformMode = {})); // Matrix mode specific types var MatrixLevel; (function (MatrixLevel) { MatrixLevel[MatrixLevel["FACT_CHECK"] = 1] = "FACT_CHECK"; MatrixLevel[MatrixLevel["UNDERSTAND_EXPLAIN"] = 2] = "UNDERSTAND_EXPLAIN"; MatrixLevel[MatrixLevel["CAUSE_CONTEXT"] = 3] = "CAUSE_CONTEXT"; MatrixLevel[MatrixLevel["APPLY_COMPARE"] = 4] = "APPLY_COMPARE"; MatrixLevel[MatrixLevel["EVALUATE_CREATE_CRITIQUE"] = 5] = "EVALUATE_CREATE_CRITIQUE"; })(MatrixLevel || (exports.MatrixLevel = MatrixLevel = {})); var MatrixDirection; (function (MatrixDirection) { MatrixDirection["FOCUSED"] = "FOCUSED"; MatrixDirection["CONTEXT"] = "CONTEXT"; MatrixDirection["APPLIED"] = "APPLIED"; MatrixDirection["CRITICAL"] = "CRITICAL"; })(MatrixDirection || (exports.MatrixDirection = MatrixDirection = {})); // Answer generation specific types var AnswerLength; (function (AnswerLength) { AnswerLength["SHORT"] = "SHORT"; AnswerLength["MEDIUM"] = "MEDIUM"; AnswerLength["LONG"] = "LONG"; AnswerLength["DETAILED"] = "DETAILED"; })(AnswerLength || (exports.AnswerLength = AnswerLength = {})); //# sourceMappingURL=index.js.map