interface VectorStoreMilvusNodeParameters {
embeddingBatchSize?: number;
id?: string;
includeDocumentMetadata?: boolean;
milvusCollection?: {
mode: "id" | "list";
value: string;
};
mode?: | "load"
| "insert"
| "retrieve"
| "retrieve-as-tool";
options?: { clearCollection?: boolean };
prompt?: string;
toolDescription?: string;
toolName?: string;
topK?: number;
useReranker?: boolean;
}
Properties§
Source§readonly include Document Metadata?: boolean
readonly include Document Metadata?: boolean
Whether or not to include document metadata Default: true
Source§readonly milvus Collection?: { mode: "id" | "list"; value: string }
readonly milvus Collection?: { mode: "id" | "list"; value: string }
Default: {"mode":"list","value":""}
Source§readonly prompt?: string
readonly prompt?: string
Search prompt to retrieve matching documents from the vector store using similarity-based ranking
Number of documents to embed in a single batch Default: 200