Database
Pinecone

Pinecone Integration

This integration allows you to connect and interact with your Pinecone vector database and perform quick operations such as "Delete Vectors", "Upsert Pinecone Index", "Query Vectors".


PineCone Nodes

Steps to connect with Pinecone Database

Setup Pinecone App

Create an account on Pinecone (opens in a new tab) --> setup application and add organization (follow pinecone tour).

Create a New Index

Create an Index to manage vectors and access the required credentials.


PineCone Index- Give your index a name. - Add required configurations such as dimensions and metric - Click create

Get Credentials and Variables from created Index

Click on the created index.


PineCone Index Setup

Get Pinecone API Key

You will find your Pinecone API key under AI agent API keys (see navigation bar)


PineCone API Key

You are all set to use BuildShip's Pinecone Nodes. 🎉

Example: Lets upsert some records to Pinecone vector database

In this example we will upsert few values of records to the created Pinecone vector index.


PineCone Upsert Node
  • Add a REST API Trigger and select POST method.
  • Add all the required values from the Vector Index we created above.
  • Pass the API Key.
  • Sample Array for record:
[
  {
    "id": "1",
    "values": [0.236, 0.971]
  }
]
  • Lets deploy our workflow and test the API on Postman (choose your favorite tool)
PineCone Node Testing

🎉 Congratulations you have successfully connected and upserted a record in Pinecone Database

PineCone Upsert Value