Ver Fonte

changes in the file

VISHAL BHANUSHALI há 3 meses atrás
pai
commit
c88adbd6ce

+ 8 - 1
attr_extraction/results/response35prod_additional_multiple.json

@@ -129,7 +129,7 @@
                         "decision": "rejected"
                     },
                     {
-                        "value": "Tee",
+                        "value": "Pullover",
                         "source": "description",
                         "reason": "The product description mentions 't-shirt' and 'tee', which suggests that it's a type of clothing top.",
                         "original_value": "Muscle",
@@ -286,6 +286,13 @@
                         "reason": "The product description mentions 'Loose T-Shirt' as one of the details.",
                         "original_value": "Pullover",
                         "decision": "rejected"
+                    },
+                    {
+                        "value": "Pullover",
+                        "source": "long_desc",
+                        "reason": "The product description mentions 'Loose T-Shirt' as one of the details.",
+                        "original_value": "Pullover",
+                        "decision": "rejected"
                     }
                 ],
                 "shirt_neck_style": [

+ 5 - 5
content_quality_tool_public/static/js/attr-extraction.js

@@ -2552,7 +2552,7 @@ function renderInlineForTable() {
             
             const combinedTitle = el('div', 'section-title');
             combinedTitle.innerHTML = '<h2>Additional & AI-Driven Attributes</h2>';
-            content.appendChild(combinedTitle);
+            // content.appendChild(combinedTitle);
             
             const combinedAttributesContainer = el('div', 'combined-attributes-container');
             
@@ -2563,7 +2563,7 @@ function renderInlineForTable() {
                     'Additional Attributes',
                     mandatoryData
                 );
-                combinedAttributesContainer.appendChild(additionalTable);
+                // combinedAttributesContainer.appendChild(additionalTable);
             }
             
             // Render OCR Table (Conditional based on data existence)
@@ -2573,7 +2573,7 @@ function renderInlineForTable() {
                     'OCR Results',
                     mandatoryData
                 );
-                combinedAttributesContainer.appendChild(ocrTable);
+                // combinedAttributesContainer.appendChild(ocrTable);
             }
             
             // Render Visuals Table (Conditional based on data existence)
@@ -2583,10 +2583,10 @@ function renderInlineForTable() {
                     'Visual Results',
                     mandatoryData
                 );
-                combinedAttributesContainer.appendChild(visualsTable);
+                // combinedAttributesContainer.appendChild(visualsTable);
             }
 
-            content.appendChild(combinedAttributesContainer);
+            // content.appendChild(combinedAttributesContainer);
         }
         
         // --- Summary Counts ---