UNPKG

embeddings-splitter

Version:

A typescript library to split your long texts into smaller chunks to send them to OpenAI Embeddings API

8 lines (7 loc) 233 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getChunksByNewLine = void 0; function getChunksByNewLine(text) { return text.split(/\r?\n/); } exports.getChunksByNewLine = getChunksByNewLine;