Files
myAi/api/Services/Contracts/Rag/ITextChunker.cs
T
claude ab31d41d88
Build and Push Docker Images / build (push) Successful in 20s
Changes
2026-05-04 17:49:04 +03:00

7 lines
147 B
C#

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