Merge pull request #33 from Fosowl/dev

"Please be patient sir" #32 fix
This commit is contained in:
Martin 2025-03-15 19:51:53 +01:00 committed by GitHub
commit c2378ebc0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -8,4 +8,4 @@ recover_last_session = True
save_session = False
speak = True
listen = False
work_dir = none
work_dir = /Users/mlg/Documents/A-project/AI/Agents/agenticSeek/ai_workplace

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: