Fix: tts message gender neutral

This commit is contained in:
martin legrand 2025-03-15 19:50:48 +01:00
parent ca38bd14e4
commit ba0b884c28

View File

@ -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, Im 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: