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§
§§§§§§§§§§
readonly clear Store?: boolean§
readonly embedding Batch Size?: numberNumber of documents to embed in a single batch Default: 200
readonly id?: stringID of an embedding entry
readonly include Document Metadata?: booleanWhether or not to include document metadata Default: true
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"
readonly mode?: "load" | "insert" | "retrieve" | "retrieve-as-tool"Default: "retrieve"
readonly prompt?: stringSearch prompt to retrieve matching documents from the vector store using similarity-based ranking
readonly tool Description?: stringExplain to the LLM what this tool does, a good, specific description would allow LLMs to produce expected results much more often Type options: {"rows":2}
readonly tool Name?: stringName of the vector store
readonly top K?: numberNumber of top results to fetch from vector store Default: 4
readonly use Reranker?: booleanWhether or not to rerank results
Whether to clear the store before inserting new data