ArtificialIntelligence.io

The Signal

Everything that matters in AI, with our take.

Updated through the day. Every headline links straight to the source. The two lines underneath are ours.

Hacker News (AI, 50+ points)Article

AI companies destroy physical books – let's scan rare books before it's too late

This is a niche but real friction point in the data supply chain feeding training corpora, and the destructive scanning claim, if verified, is the kind of story that regulators and publishers will seize on in copyright fights. Worth noting for anyone tracking the provenance and ethics side of training data, but treat the underlying claim as unverified until independently corroborated.

arXiv cs.CLPaper

Learning how to Forget: Fine-tuning for Long-Context Sparse Attention

This is a real infra contribution: a technique to make sparse attention fine-tuning work on a single A100 rather than requiring exact-attention sequence parallelism across a cluster. If you're running long-context inference at cost and hitting KV cache limits, the open source KeysAndValues library is worth evaluating directly. Practical value is high for infra teams, low for everyone else.

arXiv cs.AIPaper

From Agent Behaviour to Agent-Friendly Documentation: An Empirical Study of How Coding Agents Discover, Read, and Write Technical Documentation

The finding that agents lean on instruction files and working notes over API references is the actionable bit: if you're maintaining docs for a codebase agents touch, invest in CLAUDE.md-style instruction files, not polished reference pages. The near-zero adjacent transition probability between doc reads and edits suggests current agents aren't using documentation the way you'd expect, which is worth testing against your own agent's traces before trusting it.

arXiv cs.AIPaper

The Third Restructuring of Software Form: From the Three-Tier Architecture to Storage, Models, and Agents

This is a framing paper, not a benchmark or a product, so treat it as a thesis statement rather than evidence. The claim that UI generation absorbs the interface layer and reasoning absorbs business logic is directionally where a lot of agent tooling is already heading, but the paper doesn't show it working at scale. Useful for a slide deck, not for a roadmap decision.

arXiv cs.CLPaper

Auditing Cross-Lingual Fairness in Language Model Watermarking

Watermarking is heading toward regulatory relevance as governments push provenance requirements, and this paper shows most schemes were never tested outside English. If you're deploying watermarking for compliance reasons in multilingual products, this is a warning that your detection thresholds may be badly miscalibrated for non-English output.

arXiv cs.CLPaper

Reward-Guided Autoregressive Graph Generation for Efficient Multi-Agent Communication Topology Design

Token cost is the real tax on multi-agent systems, and this is one of several papers chipping away at it through smarter topology design rather than bigger models. A 20% reduction is meaningful at scale but this is early-stage academic work, not a production tool. Worth tracking if you're running orchestration frameworks with heavy agent-to-agent chatter, not worth adopting yet.

arXiv cs.LGPaper

Ask Self, Ask Others: Relation Is All You Need

The efficiency numbers are only shown at 10M to 100M parameter scale, so the real question is whether Hybrid Relation's quality and speed gains survive to billion-parameter regimes where FlashAttention already dominates. Worth tracking if you're building custom architectures, but not yet a reason to touch a production training stack.

arXiv cs.CLPaper

When Text and Numbers Disagree: Evidence Arbitration in Large Language Models

This matters for anyone building agents that pull from mixed sources, financial dashboards, monitoring systems, tool outputs feeding a summarizer. The finding that models over-trust recent data and external forecasts even against explicit reliability signals is exactly the kind of failure mode that shows up quietly in production and causes bad decisions. If your pipeline reconciles numbers and text automatically, this is worth testing against your own models before you trust the arbitration.

arXiv cs.CLPaper

FormalTCS: Benchmarking End-to-End Frontier Formal Theoretical Computer Science Research of Large Language Models

The headline number, 11.5 on autoformalization versus 28.6 on proving pre-formalized statements, shows the bottleneck isn't proof search, it's translating research prose into formal claims. That's a narrow but real signal for anyone betting on LLMs doing autonomous math or CS research: the hard part is upstream of reasoning. Not actionable for most builders, but a good benchmark to watch if you're in formal verification tooling.

arXiv cs.CLPaper

MemTrapBench: Benchmarking Cognitive Traps in LLM Memory Use

This is a useful counterpoint to the current push toward persistent agent memory: retrieval accuracy is the wrong metric if the retrieved memory actively degrades reasoning on the current task. Anyone shipping memory-augmented agents should benchmark against a no-memory control before assuming memory helps at all.

arXiv cs.AIPaper

Learning When to Think: Adaptive Reasoning for Test-Time Compute Allocation

This attacks a real cost problem: reasoning models burning tokens on easy problems and underthinking hard ones. Baking the mode choice into the policy itself, rather than a separate classifier, is a cleaner design than most adaptive-compute schemes floating around. If you're running reasoning models in production at scale, this is worth testing against your own difficulty distribution to cut inference cost.

arXiv cs.CLPaper

ContractScrub: A benchmark for final review of legal contracts

Contract scrubbing is exactly the kind of routine, high-volume, attention-to-detail legal task that looks automatable on paper, and this benchmark gives buyers a way to actually test vendor claims instead of trusting demos. Legal tech vendors and law firm ops teams should use this before signing anything, since the excerpt implies frontier models still have real gaps.

arXiv cs.CLPaper

Break It Down, Pass It On: Cross-Task Skill Transfer in LLM Agents

Anyone building agent memory or skill libraries should read this before shipping one. The finding that task-level skill reuse can actively degrade performance below a no-memory baseline is a real warning against naive 'save what worked' approaches. Practical takeaway: bias your skill extraction toward subtask granularity and natural language over code snippets.

arXiv cs.LGPaper

Which Eviction Policy Should an LLM Cache Use? A Systematic Study Across Workloads, Capacities, and Encoders

Useful negative result for anyone building semantic caching into an LLM serving stack: stop building fancy geometry-aware eviction logic and just use LFU. The paper also flags a deeper measurement issue with near-neighbor lookup radius that's worth reading before trusting cache hit-rate benchmarks generally. Practical, low-drama, save-yourself-engineering-time kind of paper.

arXiv cs.CLPaper

Inject, Align, Recover: Staged Post-Training for Retrieval-Free Document Knowledge Internalization

Retrieval-free QA over bounded document sets is a real enterprise need where RAG adds latency and infrastructure overhead teams would rather avoid. This staged injection-align-recover approach tested across Llama, Phi, Qwen, and SmolLM gives a concrete recipe rather than just a benchmark number. Worth testing if you're internalizing a fixed knowledge base into a smaller fine-tuned model instead of maintaining a vector store.

arXiv cs.CLPaper

Phantom Gains: Auditing Self-Improvement Against a Measured Null

This is the kind of methodology paper that should change how self-improvement results get reported: several widely used evaluation tricks, like single greedy-decode ledgers, invent gains out of noise. Anyone running iterative self-training or RL loops and reporting per-problem capability shifts should check their pipeline against this list before trusting the numbers. Good reminder that most self-improvement headlines need a frozen-control baseline to mean anything.

arXiv cs.AIPaper

MidTool: Mid-training Data Synthesis for Agentic Tool Use

Tool-use quality is the actual bottleneck in most agent deployments, so a dedicated mid-training stage targeting affordance recognition and argument grounding is a real contribution. It's open and reproducible on small Qwen models, which makes it usable for teams fine-tuning their own agent stacks rather than just a benchmark paper. Worth a look if you're training smaller open models for tool-calling workflows.

arXiv cs.AIPaper

Pandora's AI Model Routing Box: Efficient Allocation with Costly Value Estimation

Multi-model routing is becoming an infra layer of its own, and this gives it a rigorous theoretical grounding rather than heuristics. Useful for teams building router logic across model providers to cut cost without hurting quality, but it's early theory, not a drop-in system. Worth flagging for infra teams optimizing spend across model tiers, not urgent for anyone else.

arXiv cs.AIPaper

AI4AI-Bench: Benchmarking LLM Agents in Algorithmic Design for Recursive Self-Improvement

This is one of the more concrete attempts to measure recursive self-improvement empirically rather than argue about it philosophically, by isolating algorithm design from data curation or hyperparameter tuning. If frontier labs start reporting scores on this, it becomes a real capability marker worth tracking closely. For now it's a benchmark proposal, useful context for anyone monitoring the RSI debate rather than something to act on immediately.

arXiv cs.AIPaper

Inducing Task Models from Computer-Use Traces

This addresses a real bottleneck for computer-use agents: turning messy, multi-threaded human activity logs into auditable, reusable task representations instead of flat step summaries. If it works at scale, it's a building block for enterprises that want to audit what their agents actually learned to do. Worth watching if you're building RPA-style or computer-use agent products that need explainability.

Simon WillisonArticle

ChatGPT search now uses the site:operator at scale

A small but telling detail about how ChatGPT's search grounding actually works under the hood. Useful for anyone doing SEO or content strategy aimed at being surfaced in ChatGPT answers, since it suggests site-level targeting still matters even in an AI-search world.

Latent SpaceArticle

The /wayfinder Skill: Navigating the “Fog of War” of Planning

This is a practitioner sharing a personal workflow pattern for using AI on ill-defined projects, which is genuinely useful territory since most agent frameworks assume a clear spec. Worth a skim if you're building planning or scaffolding tools around coding agents, but it's one person's process, not a validated methodology. Treat it as a prompt template to steal, not a framework to adopt wholesale.