Values.PineconeConfigurationSourceContains details about the storage configuration of the knowledge base in Pinecone. For more information, see Create a vector index in Pinecone.
type nonrec t = {connectionString : PineconeConnectionString.t;The endpoint URL for your index management page.
*)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.
*)namespace : PineconeNamespace.t option;The namespace to be used to write new data to your database.
*)fieldMapping : PineconeFieldMapping.t;Contains the names of the fields to which to map information about the vector store.
*)}val make :
?namespace:??? ->
connectionString:PineconeConnectionString.t ->
credentialsSecretArn:SecretArn.t ->
fieldMapping:PineconeFieldMapping.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of PineconeConnectionString.t
| `Structure of (string * [> `String of FieldName.t ]) list ])
list ]