pinecone_intelligent_filtering

A guide for adding metadata filters to Pinecone, a database that searches by similarity between pieces of data, using LangChain and Pydantic. The filters narrow results by fields such as country, policy type, sector, date, or status.

In plain words
What is it for?
Use it when building Pinecone search that must apply structured metadata rules, validate filter values, choose a search strategy, handle fallback cases, and format results.
Why use it?
It provides a defined path from a user's question to validated filters, filtered vector search, fallback handling, and combined results.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/jondoescoding/jondoescoding-coding-rules/pinecone_intelligent_filtering
Clone the repo
git clone --depth 1 https://github.com/jondoescoding/jondoescoding-coding-rules
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,939 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00028 $0.05939
Opus 5 $0.00014 $0.02969
Sonnet 5 $0.00006 $0.01188
Haiku 4.5 $0.00003 $0.00594

Measured yesterday against content hash 6329f8761722, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pinecone_intelligent_filtering scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

templates/cursor-rules/python/llm/vectorstore/pinecone_intelligent_filtering.mdc · 871 lines

How it starts

The opening of the file, as written. The whole thing — 871 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pinecone Intelligent Filtering Implementation Guide

🎯 Mission Critical Overview

This rule provides a production-tested approach for implementing sophisticated metadata filtering in Pinecone vector databases using LangChain Expression Language (LCEL) chains and Pydantic models. Based on real-world implementation that achieved 35.1% performance improvement and 100% filtering accuracy.

Core Architecture

graph TD
    A[User Query] --> B[LCEL Filter Chain]
    B --> C[Pydantic PolicyFilter Model]
    C --> D[Metadata Extraction]
    D --> E[Pinecone Filter Builder]
    E --> F[Search Strategy Router]
    F --> G[Vector Search Execution]
    G --> H[Fallback Handler]
    H --> I[Results Aggregation]
    I --> J[Formatted Response]
    
    subgraph "Filter Types"
        K[Country/Jurisdiction]
        L[Policy Type]
        M[Sectoral Coverage]
        N[Date Ranges]
        O[Implementation Status]
    end
    
    E --> K
    E --> L
    E --> M
    E --> N
    E --> O

⚠️ Mission Critical Requirements

NEVER Do These

  • Never use any type - Always use strict typing with Union types or Pydantic models
  • Never hardcode filter values - Always extract from real data sources
  • Never skip fallback mechanisms - Always implement graceful degradation
  • Never use string concatenation for filters - Use structured Pydantic models
  • Never ignore case sensitivity - Implement proper normalization
  • Never skip validation - Always validate filter values against known metadata

ALWAYS Do These

  • Always use Pydantic models for filter extraction and validation
  • Always implement LCEL chains for structured LLM interactions
  • Always provide fallback search when filters return no results
  • Always log filter transformations for debugging and monitoring
  • Always validate extracted values against real metadata options
  • Always use proper TypeScript/Python typing throughout the stack

Read the full file on GitHub · 871 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 871 lines · 28 tokens per session scan A 6329f8761722

Subscribe to this mod's changes

pinecone_intelligent_filtering is a cursor rule published in the GitHub repository jondoescoding/jondoescoding-coding-rules (2 stars, last pushed 1mo ago), licensed MIT. It adds 28 tokens to every session and 5,939 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.