What's New — Wednesday, August 19, 2026
Papers 3
-
From Sequence to Structure: Relational Uncertainty Propagation for LLM Agents
Chinese Academy of Sciences (ISCAS) ▲3
RUPA models an agent's execution history as a directed graph and propagates uncertainty over it, so risk that accumulates and transfers across interaction steps is captured rather than only local per-step confidence. Combined with behavioral and alignment signals it scores confidence for whole trajectories, tested on several benchmarks across six open-source models.
Confidence at the trajectory level rather than the token level is the same problem as knowing when any long-running model output should be distrusted. The graph framing is a concrete alternative to averaging per-step scores, which is what most failure-detection heuristics still amount to — and the claim is checkable, since a propagated score should catch failures earlier than a local one on the same traces.
#evaluation #agents #uncertainty-quantification #llm HF ↗
-
Agentic ESOpt: Fine-Tuning Long-Horizon LLM Agents with Minimal GPU Requirements
NUS / SUSTech / Oxford ▲1
Argues evolution strategies beat RL for fine-tuning LLM agents over long reasoning horizons, doing full-parameter optimization using only inference-level GPU memory through parameter perturbations and reward-weighted updates. Reports +6.69% on WebArena-Lite and demonstrates prompt-parameter co-evolution.
Full-parameter tuning at inference-level memory is a strong enough claim that the harness deserves more scrutiny than the headline number. The question worth asking is whether WebArena-Lite actually exercises the horizon length the method claims to fix — a gain measured on tasks shorter than the problem would not mean much.
#agents #rl #training-efficiency #benchmarks HF ↗
-
Dynamic Multi-Byte Prediction With Hierarchical Language Models
Ohio State University and collaborators ▲1
Speeds up byte-level hierarchical (tokenizer-free) LMs by predicting several bytes in parallel instead of one at a time, using a variable-length prediction window aligned to latent tokens plus an attention mask that keeps generation causal. Adds no parameters, and reports minimal quality loss across generation, instruction following, QA, summarization and machine translation.
Decode throughput is the standing objection to tokenizer-free models, and this is a parameter-free fix in the speculative-decoding family. Something like it would have to exist before byte-level architectures could be considered for streaming or real-time work at all, so the interesting number is the throughput gain against the quality loss, not either alone.
#inference-optimization #architectures #tokenizers #llm HF ↗