Scrape and ingest web pages into a Pinecone RAG stack with Firecrawl and OpenAI
What this does Receives a URL via webhook, uses Firecrawl to scrape the page into clean markdown, and stores it as vector embeddings in Pinecone. A visual, self-hosted ingestion pipeline for RAG knowledge bases. Addin...
Template notes
What this does
Receives a URL via webhook, uses Firecrawl to scrape the page into clean markdown, and stores it as vector embeddings in Pinecone. A visual, self-hosted ingestion pipeline for RAG knowledge bases. Adding a new source is as simple as sending a URL.
The second part of the workflow exposes a chat interface where an AI Agent queries the stored knowledge base to answer questions, with Cohere reranking for better retrieval quality.
How it works
Part 1: Ingestion Pipeline 1. Webhook receives a POST request with a url field 2. Verify URL validates and normalizes the domain, returning a 422 error if invalid 3. Firecrawl /scrape fetches the page and converts it to clean markdown 4. Embeddings OpenAI generates 1536-dimensional vector embeddings from the scraped content 5. Default Data Loader attaches the source URL as metadata 6. Pinecone Vector Store inserts the content and embeddings into the index 7. Respond to Webhook confirms how many items were added
Part 2: RAG Chat Agent 1. Chat trigger receives a user question 2. AI Agent (OpenRouter / Claude Sonnet) queries the Pinecone vector store 3. Cohere Reranker improves retrieval quality before the agent responds 4. Agent answers based solely on the ingested knowledge base
🔥 Firecrawl 🌲 Pinecone 🧠OpenAI Embeddings 🤖 OpenRouter (Claude Sonnet) 🎯 Cohere Reranker
Webhook usage