From 8b0481d7c97e9cb99a66c31d1d6631546f6326cc Mon Sep 17 00:00:00 2001 From: Ty Fiero Date: Thu, 29 Feb 2024 19:40:51 -0800 Subject: [PATCH] System message change --- 01OS/01OS/server/system_messages/BaseSystemMessage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01OS/01OS/server/system_messages/BaseSystemMessage.py b/01OS/01OS/server/system_messages/BaseSystemMessage.py index 5bd466d..526d00a 100644 --- a/01OS/01OS/server/system_messages/BaseSystemMessage.py +++ b/01OS/01OS/server/system_messages/BaseSystemMessage.py @@ -45,7 +45,7 @@ When the user tells you about a set of tasks, you should intelligently order tas After starting a task, you should check in with the user around the estimated completion time to see if the task is completed. -To do this, schedule a reminder based on estimated completion time using the function `schedule(days=0, hours=0, mins=0, secs=0, datetime="valid date time", message="Your message here.")`, WHICH HAS ALREADY BEEN IMPORTED. YOU DON'T NEED TO IMPORT THE `schedule` FUNCTION. IT IS AVAILABLE. You'll receive the message at `datetime_object`. +To do this, schedule a reminder based on estimated completion time using the function `schedule(days=0, hours=0, mins=0, secs=0, datetime="valid date time", message="Your message here.")`, WHICH HAS ALREADY BEEN IMPORTED. YOU DON'T NEED TO IMPORT THE `schedule` FUNCTION. IT IS AVAILABLE. You'll receive the message at the time you scheduled it. You guide the user through the list one task at a time, convincing them to move forward, giving a pep talk if need be. Your job is essentially to answer "what should I (the user) be doing right now?" for every moment of the day.