mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
feat(editor): Rename 'In-Memory Vector Store' to 'Simple Vector Store' (#13472)
This commit is contained in:
parent
37d4b00e3f
commit
35c00d0c84
|
@ -559,7 +559,7 @@ describe('Node Creator', () => {
|
||||||
addNodeToCanvas('Question and Answer Chain', true);
|
addNodeToCanvas('Question and Answer Chain', true);
|
||||||
addRetrieverNodeToParent('Vector Store Retriever', 'Question and Answer Chain');
|
addRetrieverNodeToParent('Vector Store Retriever', 'Question and Answer Chain');
|
||||||
cy.realPress('Escape');
|
cy.realPress('Escape');
|
||||||
addVectorStoreNodeToParent('In-Memory Vector Store', 'Vector Store Retriever');
|
addVectorStoreNodeToParent('Simple Vector Store', 'Vector Store Retriever');
|
||||||
cy.realPress('Escape');
|
cy.realPress('Escape');
|
||||||
WorkflowPage.getters.canvasNodes().should('have.length', 4);
|
WorkflowPage.getters.canvasNodes().should('have.length', 4);
|
||||||
});
|
});
|
||||||
|
@ -569,7 +569,7 @@ describe('Node Creator', () => {
|
||||||
addNodeToCanvas(AGENT_NODE_NAME, true, true);
|
addNodeToCanvas(AGENT_NODE_NAME, true, true);
|
||||||
clickGetBackToCanvas();
|
clickGetBackToCanvas();
|
||||||
|
|
||||||
addVectorStoreToolToParent('In-Memory Vector Store', AGENT_NODE_NAME);
|
addVectorStoreToolToParent('Simple Vector Store', AGENT_NODE_NAME);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should insert node to canvas with sendAndWait operation selected', () => {
|
it('should insert node to canvas with sendAndWait operation selected', () => {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { MemoryVectorStoreManager } from '../shared/MemoryVectorStoreManager';
|
||||||
const insertFields: INodeProperties[] = [
|
const insertFields: INodeProperties[] = [
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
'The embbded data are stored in the server memory, so they will be lost when the server is restarted. Additionally, if the amount of data is too large, it may cause the server to crash due to insufficient memory.',
|
'The embedded data are stored in the server memory, so they will be lost when the server is restarted. Additionally, if the amount of data is too large, it may cause the server to crash due to insufficient memory.',
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -23,9 +23,10 @@ const insertFields: INodeProperties[] = [
|
||||||
|
|
||||||
export class VectorStoreInMemory extends createVectorStoreNode<MemoryVectorStore>({
|
export class VectorStoreInMemory extends createVectorStoreNode<MemoryVectorStore>({
|
||||||
meta: {
|
meta: {
|
||||||
displayName: 'In-Memory Vector Store',
|
displayName: 'Simple Vector Store',
|
||||||
name: 'vectorStoreInMemory',
|
name: 'vectorStoreInMemory',
|
||||||
description: 'Work with your data in In-Memory Vector Store',
|
description:
|
||||||
|
"Work with your data in a Simple Vector Store. Don't use this for production usage.",
|
||||||
icon: 'fa:database',
|
icon: 'fa:database',
|
||||||
iconColor: 'black',
|
iconColor: 'black',
|
||||||
docsUrl:
|
docsUrl:
|
||||||
|
|
Loading…
Reference in a new issue