@forge-ml/rag
Version:
A RAG (Retrieval-Augmented Generation) package for Forge ML
11 lines (10 loc) • 479 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChunkingStrategy = void 0;
var ChunkingStrategy;
(function (ChunkingStrategy) {
ChunkingStrategy["BY_PARAGRAPH"] = "by_paragraph";
ChunkingStrategy["BY_SENTENCE"] = "by_sentence";
ChunkingStrategy["BY_ITEM_IN_LIST"] = "by_item_in_list";
ChunkingStrategy["BY_CUSTOM_DELIMITER"] = "by_custom_delimiter";
})(ChunkingStrategy || (exports.ChunkingStrategy = ChunkingStrategy = {}));