interface VectorStoreInMemoryNodeParameters {
clearStore?: boolean;
embeddingBatchSize?: number;
id?: string;
includeDocumentMetadata?: boolean;
memoryKey?:
| string
| { mode: "id"
| "list"; value: string };
mode?:
| "load"
| "insert"
| "retrieve"
| "retrieve-as-tool";
prompt?: string;
toolDescription?: string;
toolName?: string;
topK?: number;
useReranker?: boolean;
}
Properties§
Source§readonly embedding Batch Size?: number
readonly embedding Batch Size?: number
Number of documents to embed in a single batch Default: 200
Source§readonly include Document Metadata?: boolean
readonly include Document Metadata?: boolean
Whether or not to include document metadata Default: true
Source§readonly memory Key?: string | { mode: "id" | "list"; value: string }
readonly memory Key?: string | { mode: "id" | "list"; value: string }
The key to use to store the vector memory in the workflow data. The key will be prefixed with the workflow ID to avoid collisions. Default: "vector_store_key"
Source§readonly prompt?: string
readonly prompt?: string
Search prompt to retrieve matching documents from the vector store using similarity-based ranking
Whether to clear the store before inserting new data