Database config for your vectorstore.

interface PineconeStoreParams {
    filter?: PineconeMetadata;
    namespace?: string;
    pineconeConfig?: {
        config: PineconeConfiguration;
        indexName: string;
        additionalHeaders?: HTTPHeaders;
        indexHostUrl?: string;
        namespace?: string;
    };
    pineconeIndex?: Index<RecordMetadata>;
    textKey?: string;
}

Hierarchy (view full)

Properties

filter?: PineconeMetadata
namespace?: string
pineconeConfig?: {
    config: PineconeConfiguration;
    indexName: string;
    additionalHeaders?: HTTPHeaders;
    indexHostUrl?: string;
    namespace?: string;
}

Configuration for the Pinecone index. Either this or pineconeIndex must be provided.

Type declaration

  • config: PineconeConfiguration
  • indexName: string
  • Optional additionalHeaders?: HTTPHeaders
  • Optional indexHostUrl?: string
  • Optional namespace?: string
pineconeIndex?: Index<RecordMetadata>

The Pinecone index to use. Either this or pineconeConfig must be provided.

textKey?: string

Generated using TypeDoc