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`, { 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?",