Попытки в мультипарсинг
This commit is contained in:
16
CodeBase/Models/RetrievedContext.cs
Normal file
16
CodeBase/Models/RetrievedContext.cs
Normal 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();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user