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