UNPKG

@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

23 lines (22 loc) 729 B
/** * Semantic Markdown Chunker * * Combines markdown splitting with semantic similarity for intelligent merging. */ import type { Chunk, ChunkerConfig, ChunkingStrategy } from "../../types/index.js"; import { BaseChunker } from "./BaseChunker.js"; /** * Semantic Markdown Chunker * * Extends markdown chunking with semantic awareness. * Can be enhanced with embedding-based similarity. */ export declare class SemanticMarkdownChunker extends BaseChunker { readonly strategy: ChunkingStrategy; getDefaultConfig(): ChunkerConfig; protected doChunk(content: string, config: ChunkerConfig): Promise<Chunk[]>; /** * Merge small sections to optimize chunk sizes */ private mergeSmallSections; }