7 lines
143 B
C#
7 lines
143 B
C#
namespace Api.Services.Contracts;
|
|
|
|
public interface ITextChunker
|
|
{
|
|
IReadOnlyList<string> Chunk(string text, int chunkSize, int overlap);
|
|
}
|