Changes
Build and Push Docker Images / build (push) Successful in 20s

This commit is contained in:
2026-05-04 17:49:04 +03:00
parent 597a3f8d34
commit ab31d41d88
12 changed files with 54 additions and 37 deletions
+2 -5
View File
@@ -1,9 +1,6 @@
namespace Api.Services.Rag;
using Api.Services.Contracts.Rag;
public interface ITextChunker
{
IReadOnlyList<string> Chunk(string text, int chunkSize, int overlap);
}
namespace Api.Services.Rag;
public sealed class TextChunker : ITextChunker
{