diff --git a/internal/article/generator.go b/internal/article/generator.go index ba8e9ef..cf7ee6a 100644 --- a/internal/article/generator.go +++ b/internal/article/generator.go @@ -195,6 +195,9 @@ func buildGPUSegment(items []models.ConfigItem, cats map[string]string) string { if !ok || group != GroupGPU { continue } + if strings.HasPrefix(strings.ToUpper(it.LotName), "MB_") { + continue + } model := parseGPUModel(it.LotName) if model == "" { model = "UNK" @@ -332,7 +335,7 @@ func parseGPUModel(lotName string) string { continue } switch p { - case "NV", "NVIDIA", "AMD", "RADEON", "PCIE", "PCI", "SXM", "SXMX": + case "NV", "NVIDIA", "INTEL", "AMD", "RADEON", "PCIE", "PCI", "SXM", "SXMX": continue default: if strings.Contains(p, "GB") {