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

This commit is contained in:
2026-05-06 12:48:44 +03:00
parent 89cb5a10da
commit 91cdb536b1
54 changed files with 153 additions and 137 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
using Api.Services.Contracts;
using Api.Requests;
using Api.Models.Requests;
namespace Api.Controllers;
@@ -83,7 +83,7 @@ public sealed class RagController : ControllerBase
try
{
_logger.LogInformation("Semantic search request received. TargetTypes={TargetTypes}, TopK={TopK}",
string.Join(',', request.TargetDocumentTypes ?? []), request.TopK);
string.Join(',', request.TargetDocumentTypes ?? System.Array.Empty<string>()), request.TopK);
var result = await _ragService.SearchAsync(request, ct);
_logger.LogInformation("Semantic search completed. ResultCount={ResultCount}", result.Results.Count);
return Ok(result);