interface VectorStorePineconeNodeParameters {
embeddingBatchSize?: number;
id?: string;
includeDocumentMetadata?: boolean;
mode?:
| "update"
| "load"
| "insert"
| "retrieve"
| "retrieve-as-tool";
options?: | {
clearNamespace?: boolean;
pineconeNamespace?: string;
}
| {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
pineconeNamespace?: string;
};
pineconeIndex?: { mode: "id"
| "list"; value: string };
prompt?: string;
toolDescription?: string;
toolName?: string;
topK?: number;
useReranker?: boolean;
}
Properties§
Source§readonly include Document Metadata?: boolean
readonly include Document Metadata?: boolean
Whether or not to include document metadata Default: true
Source§readonly mode?:
| "update"
| "load"
| "insert"
| "retrieve"
| "retrieve-as-tool"
readonly mode?:
| "update"
| "load"
| "insert"
| "retrieve"
| "retrieve-as-tool"
Default: "retrieve"
Source§readonly options?:
| {
clearNamespace?: boolean;
pineconeNamespace?: string;
}
| {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
pineconeNamespace?: string;
}
readonly options?:
| {
clearNamespace?: boolean;
pineconeNamespace?: string;
}
| {
metadata?: {
metadataValues: { name: string; value?: string }[];
};
pineconeNamespace?: string;
}
Default: {}
Source§readonly pinecone Index?: { mode: "id" | "list"; value: string }
readonly pinecone Index?: { mode: "id" | "list"; value: string }
Default: {"mode":"list","value":""}
Source§readonly prompt?: string
readonly prompt?: string
Search prompt to retrieve matching documents from the vector store using similarity-based ranking
Number of documents to embed in a single batch Default: 200