AI News AI资讯 5h ago Updated 1h ago 更新于 1小时前 46

Show HN: AI Agents for Osint/Sigint — The State of AI Web Scraping in 2026 Show HN:面向OSINT/SIGINT的AI代理——2026年AI网络爬虫现状

75% of the web is dynamic content (database records rendered as HTML), posing ongoing challenges for AI agents RAG (2024) and long-context LLMs (2025) were first-generation solutions, but 2026 approaches still rely on dumping content into context windows, driving up costs linearly Three critical limitations of current LLM-based scraping: cost scaling linearly per page, hallucinations, and context pollution/prompt injection Makra introduces a memoization-driven knowledge retrieval engine that red 2026年AI网页抓取已从RAG演进到长上下文LLM,但面临成本线性增长、幻觉和上下文污染三大瓶颈 Makra提出基于memoization引擎的解决方案,通过缓存页面布局将成本降至传统方法的1/10 传统LLM驱动抓取方式在大规模数据集上存在显著缺陷,而结构化提取可实现理论零幻觉 浏览器自动化与agentic crawler结合成为主流,但底层仍依赖长上下文LLM导致成本居高不下

68
Hot 热度
62
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • 75% of the web is dynamic content (database records rendered as HTML), posing ongoing challenges for AI agents
  • RAG (2024) and long-context LLMs (2025) were first-generation solutions, but 2026 approaches still rely on dumping content into context windows, driving up costs linearly
  • Three critical limitations of current LLM-based scraping: cost scaling linearly per page, hallucinations, and context pollution/prompt injection
  • Makra introduces a memoization-driven knowledge retrieval engine that reduces cost to a vector query by caching page layouts
  • The in-house browser harness achieves structured/tabular data extraction at approximately 1/10th the cost of existing solutions (Makra, Exa, Firecrawl)

Why It Matters

As AI agents increasingly depend on real-time web data, the economic and reliability bottlenecks of LLM-based scraping are becoming critical blockers to scaling. This article highlights a paradigm shift from context-window-heavy approaches toward memoization-based retrieval, offering a path to cost-effective, hallucination-resistant data extraction that could redefine how practitioners build data pipelines for agentic systems.

Technical Details

  • Problem framing: 75% of the web is dynamic—database records rendered as HTML for human browsers, not machines—requiring agents to parse and extract structured data from unstructured DOMs
  • Evolution of solutions: RAG (2024) → long-context LLMs (2025) → 2026's "dump everything into context windows" approach, which scales poorly in cost
  • Makra's memoization engine: Caches and reuses page layout extractions so subsequent requests become cheap vector queries rather than full LLM calls, theoretically eliminating hallucinations by extracting data like a traditional scraper
  • Browser harness capabilities: Spins up browser instances with proxy support, extracts structured and tabular data read-only, and reduces per-page cost by ~10x compared to Makra, Exa, and Firecrawl
  • Evaluation: Scatter plot comparing correctness vs. average USD cost across 400 pages from 20 sites, demonstrating Makra's superior cost-correctness tradeoff

Industry Insight

  • The memoization paradigm could become a foundational layer for agentic infrastructure, shifting the industry away from per-request LLM calls toward cached, query-driven retrieval models
  • Practitioners should evaluate whether their current scraping pipelines are vulnerable to linear cost scaling and context pollution, especially for large-scale data collection
  • The 1/10th cost reduction positions memoization-based tools as competitive advantages for any application requiring high-volume, real-time web data extraction

TL;DR

  • 2026年AI网页抓取已从RAG演进到长上下文LLM,但面临成本线性增长、幻觉和上下文污染三大瓶颈
  • Makra提出基于memoization引擎的解决方案,通过缓存页面布局将成本降至传统方法的1/10
  • 传统LLM驱动抓取方式在大规模数据集上存在显著缺陷,而结构化提取可实现理论零幻觉
  • 浏览器自动化与agentic crawler结合成为主流,但底层仍依赖长上下文LLM导致成本居高不下

为什么值得看

本文揭示了AI网页抓取从"什么都能扔进上下文"到精细化处理的范式转变,为开发者提供了降低数据获取成本的关键路径。对于构建数据密集型AI应用的团队,理解memoization引擎如何替代传统LLM抓取具有直接的商业价值。

技术解析

  • 技术演进路径:2024年RAG作为第一代解决方案,2025年长上下文LLM将能力推向新高度,2026年发展为直接大量填充上下文窗口的方式,但成本随之飙升。
  • 核心痛点:传统方法在大规模场景下面临三大问题——成本随页面数线性增长、LLM幻觉导致数据不准确、上下文污染和prompt injection风险。
  • Makra方案:采用memoization驱动的知识检索引擎,通过缓存页面布局将后续请求成本降至向量查询级别,同时保持传统scraper的结构化提取能力。
  • 性能对比:在400页跨20个站点的测试中,Makra在正确率与成本权衡上优于Exa和Firecrawl等竞品,实现约1/10的成本降低。
  • 技术架构:内置只读浏览器harness,自动处理浏览器实例启动、代理配置和结构化/表格数据提取,agentic loop仅需处理相关DOM节点。

行业启示

  • 成本优化成为核心竞争力:随着AI应用规模化,数据获取成本从实验性支出变为核心运营指标,memoization等优化技术将从"可选"变为"必需"。
  • 结构化提取回归价值:行业正从"LLM万能论"回归理性,传统爬虫的结构化优势与AI灵活性结合将成为下一代数据管道的设计范式。
  • Agent架构需重新审视:当前agentic scraping方案过度依赖长上下文,未来架构应分离"布局理解"与"数据提取"职责,前者可缓存复用,后者按需调用。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

RAG 检索增强生成 Agent Agent LLM 大模型 Open Source 开源 Programming 编程