From 8644d48fb31e1c25beabb995b92c34fb037f2082 Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Sat, 8 Mar 2025 16:56:01 -0800 Subject: [PATCH] More fixes to agent.js, removed jill.json from settings.js --- settings.js | 1 - src/agent/agent.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/settings.js b/settings.js index 8ced45e..d3261f2 100644 --- a/settings.js +++ b/settings.js @@ -14,7 +14,6 @@ export default "base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json "profiles": ((process.env.PROFILES) && JSON.parse(process.env.PROFILES)) || [ "./andy.json", - "./jill.json" // "./profiles/gpt.json", // "./profiles/claude.json", // "./profiles/gemini.json", diff --git a/src/agent/agent.js b/src/agent/agent.js index cd65e8e..74023cb 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -124,7 +124,7 @@ export class Agent { console.log(this.name, 'received message from', username, ':', message); if (convoManager.isOtherAgent(username)) { - console.warn('recieved whisper from other bot??') + console.warn('received whisper from other bot??') } else { let translation = await handleEnglishTranslation(message);