Pinecone & AI agent examples

I am using the integration to upsert profiles into an index and then compare them for similarity, I can do a deeper dive when I get through the fully implemented end result. One important limitation of the Glide integration is lack of support for metadata. (of course if I’m wrong about this please correct me). This requires that I use make.com integrations instead of Glide’s native implementation, because metadata cannot be included in the text-based index body. I would love Glide to enable metadata support!

Metadata is important for pre-filtering results when querying the index for vector similarity, in such a case where you don’t want to return results that are obviously not what the user wanted. For example, we would want to use pre-filter to restrict similarity results to metadata that fits preferences stored in the profile. If a user is looking for a specific set of circumstances when comparing values, the end resulting similarity should fall within the confines of those preferences.

Note I am using indexes and not document search or assistant (yet).

An update: Upon further investigation, make.com pinecone modules are pre-configured for storing vectors, not actually performing the embeddings, which means you need to select an embedding API (a model) in addition to storing the vectors. That means that the vectors themselves can be queried in a make scenario, but that embedding is managed separately which complicates the workflow compared to Glide’s integration. I filed a feature request for metadata support here:

2 Likes