aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/agentsystem
diff options
context:
space:
mode:
authorsharkiecodes <lanyi_stroud@brown.edu>2025-07-01 13:06:50 -0400
committersharkiecodes <lanyi_stroud@brown.edu>2025-07-01 13:06:50 -0400
commitb7d5510a600bbe7c6a4f32b528c93e4e6a79d7dd (patch)
tree64096881900eb43d17211a78d30decf5e662471a /src/client/views/nodes/chatbot/agentsystem
parentc51091fa91a099b757a18f555ffabb8f192c97ed (diff)
creating sorting and tagging tools for agent
Diffstat (limited to 'src/client/views/nodes/chatbot/agentsystem')
-rw-r--r--src/client/views/nodes/chatbot/agentsystem/Agent.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/chatbot/agentsystem/Agent.ts b/src/client/views/nodes/chatbot/agentsystem/Agent.ts
index ebcd2fa31..d1248d098 100644
--- a/src/client/views/nodes/chatbot/agentsystem/Agent.ts
+++ b/src/client/views/nodes/chatbot/agentsystem/Agent.ts
@@ -105,8 +105,8 @@ export class Agent {
codebaseSummarySearch: new CodebaseSummarySearchTool(this.vectorstore),
fileContent: new FileContentTool(this.vectorstore),
fileNames: new FileNamesTool(this.vectorstore),
- SortDocsTool: new SortDocsTool(this._docManager),
- TagDocsTool: new TagDocsTool(this._docManager),
+ sortDocs: new SortDocsTool(this._docManager),
+ tagDocs: new TagDocsTool(this._docManager),
};
// Add the createNewTool after other tools are defined