interface VectorStoreQdrantNodeParameters {
embeddingBatchSize?: number;
id?: string;
includeDocumentMetadata?: boolean;
mode?:
| "load"
| "insert"
| "retrieve"
| "retrieve-as-tool";
options?: | {
collectionConfig?: string;
contentPayloadKey?: string;
metadataPayloadKey?: string;
}
| {
contentPayloadKey?: string;
metadataPayloadKey?: string;
searchFilterJson?: string;
};
prompt?: string;
qdrantCollection?: {
mode: "id"
| "list";
value: string;
};
toolDescription?: string;
toolName?: string;
topK?: number;
useReranker?: boolean;
}
Properties§
§
§
§
§
§
§
§
§
§
§
§
readonly embedding Batch Size?: number
readonly id?: string
ID of an embedding entry
readonly include Document Metadata?: boolean
Whether or not to include document metadata Default: true
readonly mode?: "load" | "insert" | "retrieve" | "retrieve-as-tool"
Default: "retrieve"
readonly options?:
| {
collectionConfig?: string;
contentPayloadKey?: string;
metadataPayloadKey?: string;
}
| {
contentPayloadKey?: string;
metadataPayloadKey?: string;
searchFilterJson?: string;
}
Default: {}
readonly prompt?: string
Search prompt to retrieve matching documents from the vector store using similarity-based ranking
readonly qdrant Collection?: { ... }
Default: {"mode":"list","value":""}
readonly tool Description?: string
Explain 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?: string
Name of the vector store
readonly top K?: number
Number of top results to fetch from vector store Default: 4
readonly use Reranker?: boolean
Whether or not to rerank results
Number of documents to embed in a single batch Default: 200