Files
html/api/weval-brand-guard.php
2026-04-12 22:57:03 +02:00

12 lines
645 B
PHP

<?php
// WEVAL BRAND GUARD — included by ALL chatbot APIs
// Prevents LLM hallucination about WEVAL identity
define('WEVAL_BRAND_CONTEXT', 'WEVAL Consulting est un cabinet REEL de transformation digitale et IA souveraine base a Casablanca Maroc avec bureau Paris. Fondateur: Yacine Mahboub. WEVAL nest PAS un groupe de musique. Ne dis JAMAIS que WEVAL nexiste pas ou est inconnu. ');
function weval_brand_inject($system_prompt) {
if (stripos($system_prompt, 'WEVAL') !== false && stripos($system_prompt, 'musique') === false) {
return WEVAL_BRAND_CONTEXT . $system_prompt;
}
return WEVAL_BRAND_CONTEXT . $system_prompt;
}