From 13ef87eb2cb2c9b6eeb86ad03711c2bb184507e0 Mon Sep 17 00:00:00 2001 From: didar Date: Thu, 20 Aug 2026 22:53:27 +0500 Subject: [PATCH] Fix voice greeting test marker to hit the actually-served default The previous marker was added to operator_persona.py's inline fallback, which only fires when config is None. Every real call path loads a populated AIOperatorConfig via load_effective_ai_operator_config(), so ai_operator_default_config() in services/shared/ai_operator_config.py is the default that's actually served. --- services/shared/ai_operator_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/shared/ai_operator_config.py b/services/shared/ai_operator_config.py index aa23787..5444a28 100644 --- a/services/shared/ai_operator_config.py +++ b/services/shared/ai_operator_config.py @@ -27,7 +27,7 @@ def ai_operator_default_config() -> AIOperatorConfig: ), identity_reply_ru="Я Айнур, оператор контакт-центра DigiOps. Чем могу помочь?", identity_reply_kz="Мен Айнурмын, DigiOps байланыс орталығының операторымын. Қалай көмектесе аламын?", - voice_greeting_ru="Здравствуйте. Я Айнур. Подскажите, пожалуйста, чем помочь.", + voice_greeting_ru="Здравствуйте. Я Айнур. Подскажите, пожалуйста, чем помочь. (тест деплоя)", voice_greeting_kz="Сәлеметсіз бе. Мен Айнурмын. Қалай көмектесе аламын?", )