# chunx v0.1.0 - Table of Contents An Elixir library for splitting text into meaningful chunks using Token, Word, Sentence, and Semantic strategies. ## Modules - [Chunx](Chunx.md): Chunk text with different chunking strategies. - [Chunx.Chunk](Chunx.Chunk.md): Struct representing a text chunk with metadata. - [Chunx.Chunker](Chunx.Chunker.md): Defines the interface for text chunking strategies. - [Chunx.Chunker.Semantic](Chunx.Chunker.Semantic.md): Implements semantic chunking using sentence embeddings. - [Chunx.Chunker.Sentence](Chunx.Chunker.Sentence.md): Implements sentence based chunking strategy. - [Chunx.Chunker.Token](Chunx.Chunker.Token.md): Implements token based chunking strategy. - [Chunx.Chunker.Word](Chunx.Chunker.Word.md): Implements word based chunking strategy. - [Chunx.SentenceChunk](Chunx.SentenceChunk.md): Struct representing a sentence chunk with metadata.