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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
小众软件
小众软件
I
InfoQ
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
月光博客
月光博客
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
V
Visual Studio Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research

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
Documents are records waiting to exist
Bruno Fortun · 2026-05-08 · via DEV Community

Humans are remarkably good at seeing structure.

Show someone a folder containing:

  • receipts
  • inspection reports
  • contracts
  • photos of vehicles
  • resumes

…and within seconds they understand the shape of the data.

A receipt has:

  • a merchant
  • a total
  • a date

A vehicle photo has:

  • a brand
  • a model
  • a color

An inspection report has:

  • findings
  • categories
  • pass/fail states

The structure is obvious.

The problem is that most software systems cannot see it.

The retrieval trap

Most modern AI tooling approaches files through retrieval.

Chunk documents.
Embed chunks.
Search by similarity.
Feed chunks into an LLM.

This works surprisingly well for retrieval questions:

  • “find the contract mentioning GDPR”
  • “show me the invoice from March”
  • “summarize this document”

But many real-world questions are not retrieval questions.

They are aggregation questions.

Examples:

  • Which vehicles appear most frequently across this photo collection?
  • How many reports failed safety checks?
  • Which suppliers increased prices over time?
  • Which contracts expire within 90 days?
  • What is the average spend per month across these receipts?

Retrieval systems are fundamentally optimized to return relevant chunks.

Aggregation requires something else entirely:
structured records.

The structure already exists

The important realization is this:

The structure already exists inside the files.

Humans can see it instantly.

LLMs are now good enough to extract it reliably.

That changes the architecture completely.

Instead of:

files → chunks → embeddings → retrieval

…the pipeline becomes:

files → structured records → query engine

The difference is profound.

Once files become records:

  • filtering becomes deterministic
  • aggregation becomes exact
  • dashboards become trivial
  • APIs become possible
  • natural language becomes a query layer over real data

The approach behind Sifter

This idea led me to build Sifter.

The workflow is intentionally simple:

  1. Upload a collection of files
  2. Describe what matters in natural language
  3. Sifter infers a schema
  4. Files are processed into typed records
  5. Query the resulting dataset in natural language

The files can be:

  • PDFs
  • images
  • photos
  • scanned documents
  • multilingual content

The key idea is that the system is not retrieving chunks.
It is querying records.

Why this matters

Most organizations already contain enormous amounts of latent structured data.

The problem is not the absence of data.
The problem is that the structure is trapped inside files.

A folder is often just a database waiting to exist.

Links

OSS repo:
https://github.com/sifter-ai/sifter

Cloud:
https://sifter.run