aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/agentsystem
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-07-24 10:53:45 -0400
committerbobzel <zzzman@gmail.com>2025-07-24 10:53:45 -0400
commitee129da1ed03a9897cc282e52e0d31dee006983d (patch)
tree928182fcaee777609576c4eba91ab57ca3002035 /src/client/views/nodes/chatbot/agentsystem
parent9c7ddca0782a1d8dd1a8ff35759321b867a2b175 (diff)
making filter sort and tag doc tools work the same way with docs within the collection and with improved formatting for openai.
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