@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
17 lines (16 loc) • 677 B
TypeScript
/**
* Character-based Chunker
*
* Simple character-based text splitting with configurable separator and overlap.
* Best for unstructured text where character count is the primary concern.
*/
import type { Chunker, Chunk, ChunkerValidationResult, CharacterChunkerConfig, BaseChunkerConfig } from "../../types/index.js";
/**
* Character-based chunker implementation
* Splits text by character count with optional separator
*/
export declare class CharacterChunker implements Chunker {
readonly strategy: "character";
chunk(text: string, config?: CharacterChunkerConfig): Promise<Chunk[]>;
validateConfig(config: BaseChunkerConfig): ChunkerValidationResult;
}