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