namespace Api.Services.Contracts.Rag; public interface ITextChunker { IReadOnlyList Chunk(string text, int chunkSize, int overlap); }