ZelaxyDocs
Tool Integrations
Tool

Pinecone

Store and search vector embeddings in Pinecone

Pinecone

Store, search, and manage vector embeddings in Pinecone — the leading managed vector database. Ideal for building semantic search, recommendation systems, and RAG pipelines.

Overview

PropertyValue
Typepinecone
CategoryTool — Vector Database
AuthAPI Key

Operations

OperationDescription
UpsertInsert or update vectors
QuerySearch for similar vectors
DeleteRemove vectors by ID
ListList vectors in a namespace

Configuration

SettingTypeDescription
API KeyPasswordPinecone API key
EnvironmentShort inputPinecone environment
IndexShort inputIndex name
NamespaceShort inputNamespace for isolation
Top KSliderNumber of results (1–100)
VectorCode editorQuery vector (JSON array)

Outputs

FieldTypeDescription
matchesjsonSimilar vectors with scores
contentstringMatch results

Example: Custom RAG System

Workflow (Indexing):

[Starter: Document] → [Function: Chunk] → [OpenAI: Embed] → [Pinecone: Upsert]

Workflow (Querying):

[Starter: Question] → [OpenAI: Embed] → [Pinecone: Query] → [Agent: Answer] → [Response]

Embed documents into Pinecone, then query similar chunks when answering questions — a full custom RAG pipeline.

Tips

  • Namespaces isolate data — use per-user or per-collection namespaces
  • OpenAI embeddings (1536 dimensions) are the most common pairing
  • Top K = 5–10 usually provides enough context without overwhelming the LLM