Module Values.PineconeConfigurationSource

Contains details about the storage configuration of the knowledge base in Pinecone. For more information, see Create a vector index in Pinecone.

Sourcetype nonrec t = {
  1. connectionString : PineconeConnectionString.t;
    (*

    The endpoint URL for your index management page.

    *)
  2. credentialsSecretArn : SecretArn.t;
    (*

    The Amazon Resource Name (ARN) of the secret that you created in Secrets Manager that is linked to your Pinecone API key.

    *)
  3. namespace : PineconeNamespace.t option;
    (*

    The namespace to be used to write new data to your database.

    *)
  4. fieldMapping : PineconeFieldMapping.t;
    (*

    Contains the names of the fields to which to map information about the vector store.

    *)
}
Sourceval context_ : string
Sourceval make : ?namespace:??? -> connectionString:PineconeConnectionString.t -> credentialsSecretArn:SecretArn.t -> fieldMapping:PineconeFieldMapping.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PineconeConnectionString.t | `Structure of (string * [> `String of FieldName.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t