Voice RAG’s F1 Drop Widens by 67%

Today's Overview

  • Agent Capability Is Becoming Sustained Delivery: Apodex 1.1 builds state retention, failure recovery, multi-agent coordination, and result verification into complete work trajectories.
  • Complex Retrieval Amplifies Speech Recognition Errors: Entity graphs and multi-turn rewriting widen F1 declines by 36%–67%, with incorrect entities driving most failures.
  • Environment-Side Regularization Frees the Exploration Budget: ERPO constrains query distributions with Query-KL, letting PPO and GRPO tune training stability separately from response exploration.
  • A Few Global Attention Heads Can Handle Long-Term Memory: ReWorld uses local heads for real-time control, plus a fixed KV cache and landmark store for persistent spatial state.

Featured

01 Agents Need Sustained Delivery

“Working capability” shifts the goal from answering once to making steady, verifiable progress on real tasks. An agent must use file, search, and coding tools, retain state, recover from failures, and deliver inspectable results.

Apodex 1.1 expands both execution environments and long-horizon training. Agents learn to decompose tasks, delegate in parallel, combine asynchronous results, and replan. A shared runtime and AgentOS preserve task state and action provenance across the workflow.

The abstract places Apodex among leading systems across finance, science, mathematics, coding, and search. Its 35B Mini model retains strong performance and offers an appealing size for local deployment. Full experiments must still confirm error control, coordination costs, and verification quality during long runs.

Key takeaways: - Evaluate state retention, failure recovery, and delivery verification alongside final-answer quality. - Shared, traceable state and coordination mechanisms matter more than the number of agents. - Test 35B-class models on your own long workflows before judging deployment stability and cost.


02 Smarter Retrieval Makes Voice RAG More Fragile

Entity graphs and multi-turn rewriting should correct small errors in spoken queries. Instead, they can turn one transcription mistake into a coherent but incorrect retrieval path.

Across three multi-hop QA benchmarks, combining both methods widened the F1 decline by 36%–67%. The comparison ran from clean text to accents with the highest word error rates. Incorrect ASR entities caused 87%–96% of degraded cases on 2WikiMultiHopQA, while simple surface-level repairs failed to close the gap.

Complex systems still achieved higher absolute F1, but that does not make them more resistant to errors. The accents came from neural speech synthesis, so real users still need separate testing. Voice teams should measure error amplification across the full pipeline, not only retrieval recall.

Key takeaways: - Report performance gaps between clean text and multiple recognition-error levels when evaluating voice RAG. - Test whether incorrect entities spread through the retrieval chain before adding entity graphs or multi-hop rewriting. - Higher absolute accuracy does not guarantee resilience. Validate real accents and noisy environments separately.


03 Move Stability Constraints Into the Environment

Policy-KL keeps model outputs near a reference policy. That limits training drift, but it also directly restricts response-side exploration.

ERPO separates those jobs. Query-KL constrains shifts in the training query distribution. Static weights from a reference distribution then steer updates toward typical queries. Its regularization gradient passes only through query probabilities, leaving the response distribution untouched.

PPO and GRPO can therefore tune environment stability separately from policy exploration, without extra forward computation. The abstract reports higher accuracy across six mathematical reasoning benchmarks. Training also stayed more stable with high-temperature sampling and longer runs. Evidence beyond mathematics is still needed to assess bias and distribution control.

Key takeaways: - Treat drift control and response exploration as separate tuning controls in PPO or GRPO. - Input-side regularization deserves attention during high-temperature sampling and extended training. - Stability on mathematics benchmarks does not automatically transfer to coding or tool-use tasks.


04 A Few Heads Can Hold Long Memories

Interactive world models may not need ever-growing contexts for fast responses and long-term consistency. ReWorld divides those responsibilities across attention heads.

Most local heads inspect recent frames to keep action control responsive. A small set of global heads reviews the full history and preserves spatial memory. Random routing prevents this ability from becoming fixed in specific heads.

At inference time, ReWorld compresses history into a fixed-size KV cache. It also retrieves nearby scenes from a landmark store indexed by camera position. Memory use stays flat as playtime grows. In a 64-second round trip spanning 384 latent states, 12 retained chunks reconstructed the starting view. Four-step sampling produced 704×1280 video in real time.

Key takeaways: - Long-term consistency does not require every attention head to scan the full history. - A fixed cache plus a location-indexed landmark store keeps memory costs controlled during extended interaction. - Evaluate world models on action response, revisit consistency, and real-time generation quality together.

Voice RAG’s F1 Drop Widens by 67%

Also Worth Noting

05
Persistent REPLs Turn Agent Improvement Into a Cumulative System. AgentPrime Agent preserves history, memory, and skills across long-running trajectories through an open-source RLM runtime. link
06
RAG Answers Can Flip Even When Aggregate Accuracy Stays Flat. RetrievalCorpus growth can silently change answers to individual questions, so production audits should track sample-level answer churn. link
07
Evicted Audio KV States Should Not Be Gone Forever. EfficiencyWnW lets speech LLMs restore historical positions on demand during decoding instead of relying on static compression. link
08
Step-Level Tests Expose Failures in Rule Execution. ReasoningA new benchmark checks whether models can reliably apply reusable external rules instead of merely recalling facts. link
09
Static Math Sets Lose Signal as Preference Optimization Improves. TrainingDIAG diagnoses current weaknesses and generates samples near the model’s ability boundary, improving data efficiency for preference distillation. link
10
Motion Paths Beat Fixed Scan Orders for Video Interpolation. Video GenA state-space model follows motion trajectories to capture long-range dependencies between frames with linear complexity. link
11
Entropy-Guided Cropping Preserves Objects Across Patch Boundaries. MultimodalENCORE constrains attention to protect complete objects in lightweight vision-language models. link
12
The Moderator May Be the Bottleneck in Multi-Agent Debate. AgentMeta-Moderator detects redundant discussion, manages the budget, and decides when the debate should stop. link
13
Cultural Knowledge Does Not Guarantee Visual Grounding. EvaluationA Southeast Asian video benchmark separates cultural understanding, visual recognition, and temporal localization. link
14
LoRA Attention Patterns Reveal Where Ranking Behavior Forms. InterpretabilityThe study traces task-related correlation patterns through the network to support adapter diagnosis and pruning. link
15
Self-Reflection Can Become a Credit-Assignment Signal. ReasoningSRPO uses reflection during post-training to connect sparse final rewards with specific decisions in long reasoning traces. link

Today's Observation

Apodex defines real work as continuous, verifiable progress. Prime Agent preserves history, memory, and skills across trajectories. ReWorld assigns short-term control and long-term memory to different attention channels.

Together, they point to lifecycle management as the scarce resource in long-horizon systems. Teams must decide what enters the active window, what persists, where recovery begins, and how to verify the final state.

Longer tasks alone cannot answer those questions. Evaluations should separate state drift, recovery-point quality, old-information recall, and delivery verification. Record both failure locations and recovery costs. Build one repeatable test for each category, then make all four part of the release gate.