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

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

@@ -2,12 +2,13 @@
{
public class CodeChunk
{
public string Id { get; set; } // Уникальный идентификатор из SCIP
public string ProjectName { get; set; }
public string EntityName { get; set; } // Человекочитаемое имя (например, ProcessData)
public string FilePath { get; set; }
public string ClassName { get; set; }
public string MethodName { get; set; }
public string Documentation { get; set; }
public string Content { get; set; }
public float[] Vector { get; set; }
public List<string> OutgoingCalls { get; set; } = new List<string>();
public string Content { get; set; } // Вырезанный сырой исходный код
public string Language { get; set; }
public float[] Embedding { get; set; } // Вектор из GraphCodeBERT
public List<string> OutgoingCalls { get; set; } = new();
}
}