@n8n/n8n-nodes-langchain
Version:
45 lines (40 loc) • 1.55 kB
text/typescript
/**
* Pinecone Vector Store Node - Version 1.1
* Discriminator: mode=update
*/
interface Credentials {
pineconeApi: CredentialReference;
}
/** Update documents in vector store by ID */
export type LcVectorStorePineconeV11UpdateParams = {
/**
* Updates a single document by `id`. Declare with `vectorStore({...})`. Required subnodes: `embedding`. Only available on stores whose `operationModes` enables it — most providers omit this mode.
* <patterns>
* <pattern title="update mode — update document by ID (generic)">
* // Substitute the type literal and provider-specific parameters — see the rest of this file.
* const store = vectorStore({
* type: '@n8n/n8n-nodes-langchain.vectorStoreXxx',
* config: {
* name: 'Knowledge Base',
* parameters: { mode: 'update', id: expr('{{ $json.docId }}') },
* subnodes: { embedding: embeddingsOpenAi }
* }
* });
* </pattern>
* </patterns>
*/
mode: 'update';
pineconeIndex?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string };
/**
* ID of an embedding entry
*/
id: string | Expression<string>;
};
export interface LcVectorStorePineconeV11UpdateSubnodeConfig {
embedding: EmbeddingInstance | EmbeddingInstance[];
}
export type LcVectorStorePineconeV11UpdateNode = {
type: '@n8n/n8n-nodes-langchain.vectorStorePinecone';
version: 1.1;
config: NodeConfig<LcVectorStorePineconeV11UpdateParams> & { credentials?: Credentials } & { subnodes: LcVectorStorePineconeV11UpdateSubnodeConfig };
};