Попытки в мультипарсинг

This commit is contained in:
2026-07-24 13:47:21 +04:00
parent b2a13528ee
commit eb8dac7627
22 changed files with 1486 additions and 37 deletions

View File

@@ -0,0 +1,16 @@
namespace CodeBase.Models
{
public class RetrievedContext
{
public string EntityName { get; set; }
public string FilePath { get; set; }
public string Content { get; set; }
public string ProjectName { get; set; }
// Оценка релевантности (полезно для отладки качества поиска)
public double SimilarityScore { get; set; }
public List<string> OutgoingDependencies { get; set; } = new();
public List<string> IncomingDependencies { get; set; } = new();
}
}