diff --git a/packages/@n8n/nodes-langchain/nodes/tools/ToolVectorStore/ToolVectorStore.node.ts b/packages/@n8n/nodes-langchain/nodes/tools/ToolVectorStore/ToolVectorStore.node.ts index 4b539e7e85..be7ac1828f 100644 --- a/packages/@n8n/nodes-langchain/nodes/tools/ToolVectorStore/ToolVectorStore.node.ts +++ b/packages/@n8n/nodes-langchain/nodes/tools/ToolVectorStore/ToolVectorStore.node.ts @@ -15,14 +15,14 @@ import { getConnectionHintNoticeField } from '@utils/sharedFields'; export class ToolVectorStore implements INodeType { description: INodeTypeDescription = { - displayName: 'Vector Store Tool', + displayName: 'Vector Store Question Answer Tool', name: 'toolVectorStore', icon: 'fa:database', group: ['transform'], version: [1], - description: 'Retrieve context from vector store', + description: 'Answer questions with a vector store', defaults: { - name: 'Vector Store Tool', + name: 'Answer questions with a vector store', }, codex: { categories: ['AI'], @@ -59,20 +59,23 @@ export class ToolVectorStore implements INodeType { properties: [ getConnectionHintNoticeField([NodeConnectionType.AiAgent]), { - displayName: 'Name', + displayName: 'Data Name', name: 'name', type: 'string', default: '', - placeholder: 'e.g. company_knowledge_base', + placeholder: 'e.g. users_info', validateType: 'string-alphanumeric', - description: 'Name of the vector store', + description: + 'Name of the data in vector store. This will be used to fill this tool description: Useful for when you need to answer questions about [name]. Whenever you need information about [data description], you should ALWAYS use this. Input should be a fully formed question.', }, { - displayName: 'Description', + displayName: 'Description of Data', name: 'description', type: 'string', default: '', - placeholder: 'Retrieves data about [insert information about your data here]...', + placeholder: "[Describe your data here, e.g. a user's name, email, etc.]", + description: + 'Describe the data in vector store. This will be used to fill this tool description: Useful for when you need to answer questions about [name]. Whenever you need information about [data description], you should ALWAYS use this. Input should be a fully formed question.', typeOptions: { rows: 3, },