packfs-core
Version:
Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.
16 lines • 451 B
TypeScript
/**
* Semantic text chunking for large files
*/
import type { ChunkResult, ProcessorOptions } from './types.js';
export declare class SemanticChunker {
private readonly options;
constructor(options?: ProcessorOptions);
/**
* Chunk text content semantically
*/
chunk(content: string): ChunkResult;
private getOverlap;
private splitLargeParagraph;
private splitBySizeLimit;
}
//# sourceMappingURL=chunker.d.ts.map