From 10c400345e19d25475c775f2f706d2cec9f36eac Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Tue, 17 Jun 2025 18:41:05 +0300 Subject: [PATCH 1/2] Update communityHub.js --- server/models/communityHub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/models/communityHub.js b/server/models/communityHub.js index 89aa59b6081..736976d20b5 100644 --- a/server/models/communityHub.js +++ b/server/models/communityHub.js @@ -187,7 +187,7 @@ const CommunityHub = { if (!this.supportedStaticItemTypes.includes(itemType)) return { success: false, error: "Unsupported item type" }; - // If the item has specical considerations or preprocessing, we can delegate that below before sending the request. + // If the item has special considerations or preprocessing, we can delegate that below before sending the request. // eg: Agent flow files and such. return await fetch(`${this.apiBase}/${itemType}/create`, { From 0fb0c7cc8109675afb9ade8be46ed8b76960e17b Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Tue, 17 Jun 2025 18:41:38 +0300 Subject: [PATCH 2/2] Update memory.js --- server/utils/agents/aibitat/plugins/memory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/utils/agents/aibitat/plugins/memory.js b/server/utils/agents/aibitat/plugins/memory.js index df52843015f..b229af3c7e6 100644 --- a/server/utils/agents/aibitat/plugins/memory.js +++ b/server/utils/agents/aibitat/plugins/memory.js @@ -16,7 +16,7 @@ const memory = { tracker: new Deduplicator(), name: this.name, description: - "Search against local documents for context that is relevant to the query or store a snippet of text into memory for retrieval later. Storing information should only be done when the user specifically requests for information to be remembered or saved to long-term memory. You should use this tool before search the internet for information. Do not use this tool unless you are explicity told to 'remember' or 'store' information.", + "Search against local documents for context that is relevant to the query or store a snippet of text into memory for retrieval later. Storing information should only be done when the user specifically requests for information to be remembered or saved to long-term memory. You should use this tool before search the internet for information. Do not use this tool unless you are explicitly told to 'remember' or 'store' information.", examples: [ { prompt: "What is AnythingLLM?",