@n8n/n8n-nodes-langchain
Version:
85 lines (80 loc) • 2.79 kB
text/typescript
/**
* Qdrant Vector Store Node - Version 1.2
* Discriminator: mode=load
*/
interface Credentials {
qdrantApi: CredentialReference;
}
/** Get many ranked documents from vector store for query */
export type LcVectorStoreQdrantV12LoadParams = {
/**
* One-shot similarity search on the main flow using the `prompt` parameter. Declare with `vectorStore({...})`. Required subnodes: `embedding`. For LLM-driven querying (RAG), use `mode: 'retrieve-as-tool'` instead.
* <patterns>
* <pattern title="load mode — one-shot similarity search (generic)">
* // Substitute the type literal and provider-specific parameters — see the rest of this file.
* const lookup = vectorStore({
* type: '@n8n/n8n-nodes-langchain.vectorStoreXxx',
* config: {
* name: 'Knowledge Base',
* parameters: {
* mode: 'load',
* prompt: expr('{{ $json.query }}'),
* // ...provider-specific parameters
* },
* subnodes: { embedding: embeddingsOpenAi }
* }
* });
* </pattern>
* </patterns>
*/
mode: 'load';
qdrantCollection?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string };
/**
* Search prompt to retrieve matching documents from the vector store using similarity-based ranking
*/
prompt: string | Expression<string>;
/**
* Number of top results to fetch from vector store
* @default 4
*/
topK?: number | Expression<number>;
/**
* Whether or not to include document metadata
* @default true
*/
includeDocumentMetadata?: boolean | Expression<boolean>;
/**
* Whether or not to rerank results
* @default false
*/
useReranker?: boolean | Expression<boolean>;
/**
* Options
* @default {}
*/
options?: {
/** Filter pageContent or metadata using this <a href="https://qdrant.tech/documentation/concepts/filtering/" target="_blank">filtering syntax</a>
*/
searchFilterJson?: IDataObject | string | Expression<string>;
/** The key to use for the content payload in Qdrant. Default is "content".
* @default content
*/
contentPayloadKey?: string | Expression<string>;
/** The key to use for the metadata payload in Qdrant. Default is "metadata".
* @default metadata
*/
metadataPayloadKey?: string | Expression<string>;
};
};
export interface LcVectorStoreQdrantV12LoadSubnodeConfig {
embedding: EmbeddingInstance | EmbeddingInstance[];
/**
* @displayOptions.show { useReranker: [true] }
*/
reranker: RerankerInstance;
}
export type LcVectorStoreQdrantV12LoadNode = {
type: '@n8n/n8n-nodes-langchain.vectorStoreQdrant';
version: 1.2;
config: NodeConfig<LcVectorStoreQdrantV12LoadParams> & { credentials?: Credentials } & { subnodes: LcVectorStoreQdrantV12LoadSubnodeConfig };
};