This commit is contained in:
Slipstream 2025-04-28 16:47:54 -06:00
parent 067f4277c5
commit eaa68b9e54
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD
2 changed files with 2 additions and 1 deletions

View File

@ -123,6 +123,7 @@ LEARNING_UPDATE_INTERVAL = 3600 # Update learned patterns every hour
REFLECTION_INTERVAL_SECONDS = int(os.getenv("REFLECTION_INTERVAL_SECONDS", 6 * 3600)) # Reflect every 6 hours REFLECTION_INTERVAL_SECONDS = int(os.getenv("REFLECTION_INTERVAL_SECONDS", 6 * 3600)) # Reflect every 6 hours
GOAL_CHECK_INTERVAL = int(os.getenv("GOAL_CHECK_INTERVAL", 300)) # Check for pending goals every 5 mins GOAL_CHECK_INTERVAL = int(os.getenv("GOAL_CHECK_INTERVAL", 300)) # Check for pending goals every 5 mins
GOAL_EXECUTION_INTERVAL = int(os.getenv("GOAL_EXECUTION_INTERVAL", 60)) # Check for active goals to execute every 1 min GOAL_EXECUTION_INTERVAL = int(os.getenv("GOAL_EXECUTION_INTERVAL", 60)) # Check for active goals to execute every 1 min
PROACTIVE_GOAL_CHECK_INTERVAL = int(os.getenv("PROACTIVE_GOAL_CHECK_INTERVAL", 900)) # Check if Gurt should create its own goals every 15 mins
# --- Topic Tracking Config --- # --- Topic Tracking Config ---
TOPIC_UPDATE_INTERVAL = 300 # Update topics every 5 minutes TOPIC_UPDATE_INTERVAL = 300 # Update topics every 5 minutes

View File

@ -57,7 +57,7 @@ async def main():
try: try:
async with bot: async with bot:
# List of cogs to load - Load WheatleyCog instead of GurtCog # List of cogs to load - Load WheatleyCog instead of GurtCog
cogs = ["wheatley.cog", "cogs.profile_updater_cog"] # Assuming profile updater is still desired cogs = ["wheatley.cog"] # Assuming profile updater is still desired
for cog in cogs: for cog in cogs:
try: try:
await bot.load_extension(cog) await bot.load_extension(cog)