Skip to main content

Pinecone

Configure your own Pinecone instance as data sink.

Configure via UI

pinecone

Configure via API / Client

from llama_cloud.types import CloudPineconeVectorStore

ds = {
'name': '<your-name>',
'sink_type': 'PINECONE',
'component': CloudPineconeVectorStore(
api_key='<api_key>',
index_name='<index_name>',
name_space='<name_space>', # optional
insert_kwargs='<insert_kwargs>' # optional
)
}
data_sink = client.data_sinks.create_data_sink(request=ds)