Add CV extraction review surfaces

This commit is contained in:
2026-03-28 23:51:03 +01:00
parent 107c181506
commit 2392b135c2
7 changed files with 390 additions and 34 deletions
+8
View File
@@ -76,6 +76,14 @@ public static class StructuredCvProfileJson
if (primary.OtherSections.Count == 0) primary.OtherSections = secondary.OtherSections;
if (primary.Sections.Count == 0) primary.Sections = secondary.Sections;
foreach (var entry in secondary.Metadata.Fields)
{
if (!primary.Metadata.Fields.ContainsKey(entry.Key))
{
primary.Metadata.Fields[entry.Key] = entry.Value;
}
}
return Normalize(primary);
}