Vectors
Mostly native Pinecone support using the /vectors route and some minor diffences to support scalability
📄️ Create a new vector collection
Creates a new vector collection with the specified name and dimension. (equivilant to creating an index and namespace on pinecone)
📄️ List collections for RAG tuning
Returns a list of collections associated with the user identified by the API key.
📄️ Delete a collection
Deletes an entire collection. If you need more fine-grained deletion controls (e.g., deleting specific records), use the `/vectors` endpoint.
📄️ Update or insert a vector into a collection
Upserts a vector into the specified collection with metadata and data.
📄️ List vector IDs in a collection
Retrieves a list of vector IDs for the specified collection.
📄️ Get a specific record in a vector collection
Fetches the content of a specific record in the vector collection by ID.
📄️ Query vectors in a collection
Queries the vectors in the specified collection based on input criteria.