aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/agentsystem
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/nodes/chatbot/agentsystem')
-rw-r--r--src/client/views/nodes/chatbot/agentsystem/Agent.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/chatbot/agentsystem/Agent.ts b/src/client/views/nodes/chatbot/agentsystem/Agent.ts
index 0f7738703..cf9b47fca 100644
--- a/src/client/views/nodes/chatbot/agentsystem/Agent.ts
+++ b/src/client/views/nodes/chatbot/agentsystem/Agent.ts
@@ -114,12 +114,11 @@ export class Agent {
fileNames: new FileNamesTool(this.vectorstore),
generateTutorialNode: new GPTTutorialTool(this._docManager),
sortDocs: new SortDocsTool(this._docManager, this.parentView),
- tagDocs: new TagDocsTool(this._docManager),
+ tagDocs: new TagDocsTool(this._docManager, this.parentView),
filterDocs: new FilterDocsTool(this._docManager, this.parentView),
takeQuiz: new TakeQuizTool(this._docManager),
canvasDocs: new CanvasDocsTool(),
uiControl: new UIControlTool(),
-
};
// Add the createNewTool after other tools are defined