Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 721 Bytes

splitChunks.md

File metadata and controls

31 lines (16 loc) · 721 Bytes

@ai16z/eliza v1.0.0 / splitChunks

Function: splitChunks()

splitChunks(content, chunkSize, bleed): Promise<string[]>

Splits content into chunks of specified size with optional overlapping bleed sections

Parameters

content: string

The text content to split into chunks

chunkSize: number

The maximum size of each chunk in tokens

bleed: number = 100

Number of characters to overlap between chunks (default: 100)

Returns

Promise<string[]>

Promise resolving to array of text chunks with bleed sections

Defined in

packages/core/src/generation.ts:461