diff options
Diffstat (limited to 'src/client/views/nodes/chatbot/agentsystem/Agent.ts')
-rw-r--r-- | src/client/views/nodes/chatbot/agentsystem/Agent.ts | 2 |
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(), }; |