diff options
| author | sharkiecodes <lanyi_stroud@brown.edu> | 2025-07-01 13:06:50 -0400 |
|---|---|---|
| committer | sharkiecodes <lanyi_stroud@brown.edu> | 2025-07-01 13:06:50 -0400 |
| commit | b7d5510a600bbe7c6a4f32b528c93e4e6a79d7dd (patch) | |
| tree | 64096881900eb43d17211a78d30decf5e662471a /src/client/views/nodes/chatbot/agentsystem | |
| parent | c51091fa91a099b757a18f555ffabb8f192c97ed (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.ts | 4 |
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 |
