这是indexloc提供的服务,不要输入任何密码
Skip to content

Fix Typos in Comments and Documentation #4015

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/models/communityHub.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`, {
Expand Down
2 changes: 1 addition & 1 deletion server/utils/agents/aibitat/plugins/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -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?",
Expand Down