UNPKG

@n8n/n8n-nodes-langchain

Version:
131 lines (126 loc) 4.57 kB
/** * Weaviate Vector Store Node - Version 1.1 * Discriminator: mode=load */ interface Credentials { weaviateApi: CredentialReference; } /** Get many ranked documents from vector store for query */ export type LcVectorStoreWeaviateV11LoadParams = { /** * 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'; weaviateCollection?: { __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 &lt;a href="https://weaviate.io/" target="_blank"&gt;filtering syntax&lt;/a&gt; */ searchFilterJson?: IDataObject | string | Expression<string>; /** Select the metadata to retrieve along the content * @default source,page */ metadataKeys?: string | Expression<string>; /** Provide a query text to combine vector search with a keyword/text search */ hybridQuery?: string | Expression<string>; /** Whether to show the score fused between hybrid and vector search explanation * @default false */ hybridExplainScore?: boolean | Expression<boolean>; /** Select the fusion type for combining vector and keyword search results * @default RelativeScore */ fusionType?: 'RelativeScore' | 'Ranked' | Expression<string>; /** Limit result groups by detecting sudden jumps in score */ autoCutLimit?: number | Expression<number>; /** Change the relative weights of the keyword and vector components. 1.0 = pure vector, 0.0 = pure keyword. * @default 0.5 */ alpha?: number | Expression<number>; /** Comma-separated list of properties to include in the query with optionally weighted values, e.g., "question^2,answer" */ queryProperties?: string | Expression<string>; /** Set the maximum allowable distance for the vector search component */ maxVectorDistance?: number | Expression<number>; /** Tenant Name. Collection must have been created with tenant support enabled. */ tenant?: string | Expression<string>; /** The key in the document that contains the embedded text * @default text */ textKey?: string | Expression<string>; /** Whether to skip init checks while instantiating the client * @default false */ skip_init_checks?: boolean | Expression<boolean>; /** Number of timeout seconds for initial checks * @default 2 */ timeout_init?: number | Expression<number>; /** Number of timeout seconds for inserts * @default 90 */ timeout_insert?: number | Expression<number>; /** Number of timeout seconds for queries * @default 30 */ timeout_query?: number | Expression<number>; /** Proxy to use for GRPC */ proxy_grpc?: string | Expression<string>; }; }; export interface LcVectorStoreWeaviateV11LoadSubnodeConfig { embedding: EmbeddingInstance | EmbeddingInstance[]; /** * @displayOptions.show { useReranker: [true] } */ reranker: RerankerInstance; } export type LcVectorStoreWeaviateV11LoadNode = { type: '@n8n/n8n-nodes-langchain.vectorStoreWeaviate'; version: 1.1; config: NodeConfig<LcVectorStoreWeaviateV11LoadParams> & { credentials?: Credentials } & { subnodes: LcVectorStoreWeaviateV11LoadSubnodeConfig }; };