diff options
| author | bobzel <zzzman@gmail.com> | 2025-02-21 17:25:04 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-02-21 17:25:04 -0500 |
| commit | 76292349418bfadedb904a2bcb0c6d1466709326 (patch) | |
| tree | 40ef3bc60a0d22472fca813cf099880736c5e374 /src/client/views/nodes/chatbot/agentsystem | |
| parent | ec1c58855b7209c49026e98185bd52906aa84a37 (diff) | |
fixed dropping image onto image boxes. re-enabled rag tool
Diffstat (limited to 'src/client/views/nodes/chatbot/agentsystem')
| -rw-r--r-- | src/client/views/nodes/chatbot/agentsystem/Agent.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/chatbot/agentsystem/Agent.ts b/src/client/views/nodes/chatbot/agentsystem/Agent.ts index 2ed808622..e93fb87db 100644 --- a/src/client/views/nodes/chatbot/agentsystem/Agent.ts +++ b/src/client/views/nodes/chatbot/agentsystem/Agent.ts @@ -23,6 +23,7 @@ import { Doc } from '../../../../../fields/Doc'; import { parsedDoc } from '../chatboxcomponents/ChatBox'; import { WebsiteInfoScraperTool } from '../tools/WebsiteInfoScraperTool'; import { Upload } from '../../../../../server/SharedMediaTypes'; +import { RAGTool } from '../tools/RAGTool'; //import { CreateTextDocTool } from '../tools/CreateTextDocumentTool'; dotenv.config(); @@ -77,7 +78,7 @@ export class Agent { // Define available tools for the assistant this.tools = { calculate: new CalculateTool(), - // rag: new RAGTool(this.vectorstore), + rag: new RAGTool(this.vectorstore), dataAnalysis: new DataAnalysisTool(csvData), websiteInfoScraper: new WebsiteInfoScraperTool(addLinkedUrlDoc), searchTool: new SearchTool(addLinkedUrlDoc), |
