UNPKG
vector-chunker
Version:
latest (1.0.0)
1.0.0
A flexible text and data chunking library for vector databases and LLMs
vector-chunker
/
dist
/
src
/
utils
/
text-splitter.d.ts
3 lines
(2 loc)
•
149 B
TypeScript
View Raw
1
2
3
import
{
ChunkOptions
,
VectorChunk
}
from
'../types'
;
export
declare
function
splitText
(
text
:
string
,
options
:
ChunkOptions
):
VectorChunk
<
string
>[];