aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ChatBox/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/nodes/ChatBox/tools')
-rw-r--r--src/client/views/nodes/ChatBox/tools/RAGTool.ts11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/client/views/nodes/ChatBox/tools/RAGTool.ts b/src/client/views/nodes/ChatBox/tools/RAGTool.ts
index 0a4529974..5bc31dbab 100644
--- a/src/client/views/nodes/ChatBox/tools/RAGTool.ts
+++ b/src/client/views/nodes/ChatBox/tools/RAGTool.ts
@@ -5,10 +5,7 @@ import * as fs from 'fs';
import { Networking } from '../../../../Network';
export class RAGTool extends BaseTool<{ hypothetical_document_chunk: string }> {
- constructor(
- private vectorstore: Vectorstore,
- summaries: () => string
- ) {
+ constructor(private vectorstore: Vectorstore) {
super(
'rag',
'Perform a RAG search on user documents',
@@ -43,11 +40,7 @@ export class RAGTool extends BaseTool<{ hypothetical_document_chunk: string }> {
`Performs a RAG (Retrieval-Augmented Generation) search on user documents and returns a
set of document chunks (either images or text) that can be used to provide a grounded response based on
- user documents
-
- !!!IMPORTANT Use the RAG tool ANYTIME the question may potentially (even if you are not sure) relate to one of the user's documents.
- Here are the summaries of the user's documents:
- ${summaries()}`
+ user documents`
);
}