UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

30 lines (25 loc) 851 B
/** * Pinecone Vector Store Node - Version 1.3 * Discriminator: mode=update */ interface Credentials { pineconeApi: CredentialReference; } /** Update documents in vector store by ID */ export type LcVectorStorePineconeV13UpdateParams = { mode: 'update'; pineconeIndex?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * ID of an embedding entry */ id: string | Expression<string> | PlaceholderValue; }; export interface LcVectorStorePineconeV13UpdateSubnodeConfig { embedding: EmbeddingInstance | EmbeddingInstance[]; } export type LcVectorStorePineconeV13UpdateNode = { type: '@n8n/n8n-nodes-langchain.vectorStorePinecone'; version: 1.3; credentials?: Credentials; config: NodeConfig<LcVectorStorePineconeV13UpdateParams> & { subnodes: LcVectorStorePineconeV13UpdateSubnodeConfig }; };