From ba0b884c2818fa9d010f8489043cdecf265eed34 Mon Sep 17 00:00:00 2001 From: martin legrand Date: Sat, 15 Mar 2025 19:50:48 +0100 Subject: [PATCH] Fix: tts message gender neutral --- sources/agents/agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/agents/agent.py b/sources/agents/agent.py index 9e15b8b..51a2e83 100644 --- a/sources/agents/agent.py +++ b/sources/agents/agent.py @@ -108,10 +108,10 @@ class Agent(): def wait_message(self, speech_module): if speech_module is None: return - messages = ["Please be patient sir, I am working on it.", + messages = ["Please be patient, I am working on it.", "Computing... I recommand you have a coffee while I work.", "Hold on, I’m crunching numbers.", - "Working on it sir, please let me think."] + "Working on it, please let me think."] speech_module.speak(messages[random.randint(0, len(messages)-1)]) def get_blocks_result(self) -> list: