aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/agentsystem
diff options
context:
space:
mode:
authorsharkiecodes <lanyi_stroud@brown.edu>2025-07-22 21:05:47 -0400
committersharkiecodes <lanyi_stroud@brown.edu>2025-07-22 21:05:47 -0400
commit16e7cfcac3d41bd86ef953f131bb0fecba11f299 (patch)
treea2b91bf30e75e513b4913ac88ec3158e512665cf /src/client/views/nodes/chatbot/agentsystem
parent8ff34d5335093c4ff85473227f39b3e83133d999 (diff)
adjusted agent to include UI control tool
Diffstat (limited to 'src/client/views/nodes/chatbot/agentsystem')
-rw-r--r--src/client/views/nodes/chatbot/agentsystem/Agent.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/agentsystem/Agent.ts b/src/client/views/nodes/chatbot/agentsystem/Agent.ts
index 6a15d0c1d..0f7738703 100644
--- a/src/client/views/nodes/chatbot/agentsystem/Agent.ts
+++ b/src/client/views/nodes/chatbot/agentsystem/Agent.ts
@@ -35,6 +35,7 @@ import { WebsiteInfoScraperTool } from '../tools/WebsiteInfoScraperTool';
import { AgentDocumentManager } from '../utils/AgentDocumentManager';
import { FilterDocsTool } from '../tools/FilterDocsTool';
import { CanvasDocsTool } from '../tools/CanvasDocsTool';
+import { UIControlTool } from '../tools/UIControlTool';
dotenv.config();
@@ -117,6 +118,7 @@ export class Agent {
filterDocs: new FilterDocsTool(this._docManager, this.parentView),
takeQuiz: new TakeQuizTool(this._docManager),
canvasDocs: new CanvasDocsTool(),
+ uiControl: new UIControlTool(),
};