ai_qc/backend/profiles/loreal_static.json
nickviljoen 08a9901d70 Create L'Oréal Static profile and update client configurations
Created new L'Oréal Static profile (loreal_static.json):
- Focused 3-check profile for L'Oréal digital static assets
- Checks: language_consistency, text_readability_general, background_contrast_general
- Weighting: 3.34, 3.33, 3.33 (total 10.0 for 100-point scale)
- All checks use Gemini LLM

Updated client_config.py:
- L'Oréal: Added 'loreal_static' profile, kept 'static_general', removed 'general_check'
- Diageo: Added 'static_general', removed 'general_check'
- Unilever: Added 'static_general', removed 'general_check'
- General: Added 'static_general', removed 'general_check'

Result:
- Static General (10 checks) now available to ALL clients
- L'Oréal Static (3 checks) exclusive to L'Oréal
- General Check profile removed from all clients (deprecated)

Profile distribution by client:
- Diageo: diageo_key_visual, diageo_packaging, static_general
- Unilever: unilever_key_visual, unilever_packaging, static_general
- L'Oréal: loreal_static, static_general
- General: static_general, inclusive_accessibility

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-02 11:59:47 +02:00

24 lines
938 B
JSON

{
"name": "L'Oreal Static",
"description": "L'Oréal focused quality control profile for digital static marketing materials. Evaluates text readability, contrast, and language consistency.",
"checks": {
"language_consistency": {
"enabled": true,
"weight": 3.34,
"llm": "Gemini",
"description": "Detects mixed languages in marketing text to ensure market-appropriate single-language content"
},
"text_readability_general": {
"enabled": true,
"weight": 3.33,
"llm": "Gemini",
"description": "Ensures all marketing text is readable with proper size, contrast, spacing, and no overlapping elements for digital screens"
},
"background_contrast_general": {
"enabled": true,
"weight": 3.33,
"llm": "Gemini",
"description": "Verifies that key elements (logo, product, text) have sufficient contrast with background for digital viewing"
}
}
}