@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
20 lines (19 loc) • 571 B
TypeScript
/**
* Sentence Chunker
*
* Splits text by sentence boundaries for semantically meaningful chunks.
*/
import type { Chunk, ChunkerConfig, ChunkingStrategy } from "../../types/index.js";
import { BaseChunker } from "./BaseChunker.js";
/**
* Sentence Chunker
*/
export declare class SentenceChunker extends BaseChunker {
readonly strategy: ChunkingStrategy;
getDefaultConfig(): ChunkerConfig;
protected doChunk(content: string, config: ChunkerConfig): Promise<Chunk[]>;
/**
* Split content into sentences
*/
private splitIntoSentences;
}