惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
博客园_首页
量子位
F
Fortinet All Blogs
L
LangChain Blog
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
U
Unit 42
IT之家
IT之家

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a local-first movie recommender with Corrective-R...
A Aesthetic · 2026-05-26 · via DEV Community
Cover image for I built a local-first movie recommender with Corrective-RAG (cited explanations, hybrid retrieval, runs entirely on Ollama)

A Aesthetic

Hey — sharing a project I've been building for the last
few months. It's a movie recommendation system that runs entirely on
your laptop using Ollama, with a Corrective-RAG pipeline.

Why I built it: existing streaming platforms only know what you
watched on them. Netflix can't see my Prime history, none of them know
about cinema watches. Wanted one system that learns from all of it.

Stack:

  • 7-stage Corrective-RAG (LangGraph static graph, not autonomous agents)
  • Hybrid retrieval: Chroma dense vectors + rank-bm25 sparse, fused via RRF
  • BGE-small-en-v1.5 embeddings + BGE-reranker-base cross-encoder
  • Grader-based correction loop with retry budget
  • Cited explanations - every bullet must reference a real source field, bullets that fail validation are dropped (no hallucinated plot summaries)
  • Ollama llama3 default, OpenAI/Anthropic pluggable per role

The interesting design choice was query expansion at INGEST time instead
of query time. The enrichment LLM generates 3-5 pseudo-queries per movie
and embeds them alongside the plot. Catalogues are bounded; user queries
aren't, so paying the LLM cost once per movie scales better than once
per query.

Latency on M3 / 36GB / Ollama llama3: ~90s/query (filter_extract +
explain dominate). llama3.2:1b drops to ~15-20s. Hosted models ~5-10s.

Code + setup: github.com/meetgrewal7793-creator/personal-movie-recommender

The 7-stage architecture diagram is in the README. Feedback welcome —
especially on the grader prompt calibration, which I had to relax for
local-LLM defaults because llama3 graders over-flag results as weak.