AI papers — 2026-05-08
Jump to one of 18 papers
- MiA-Signature: Approximating Global Activation for Long-Context Understanding
- MARBLE: Multi-Aspect Reward Balance for Diffusion RL
- Skill1: Unified Evolution of Skill-Augmented Agents via Reinforcement Learning
- When to Trust Imagination: Adaptive Action Execution for World Action Models
- Continuous Latent Diffusion Language Model (Cola DLM)
- RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation
- Nonsense Helps: Prompt Space Perturbation Broadens Reasoning Exploration (LoPE)
- Continuous-Time Distribution Matching for Few-Step Diffusion Distillation (CDM)
- Auto Research with Specialist Agents Develops Effective and Non-Trivial Training Recipes
- Audio-Visual Intelligence in Large Foundation Models
- A2TGPO: Agentic Turn-Group Policy Optimization with Adaptive Turn-level Clipping
- UniPool: A Globally Shared Expert Pool for Mixture-of-Experts
- ReflectDrive-2: Reinforcement-Learning-Aligned Self-Editing for Discrete Diffusion Driving
- TabEmbed: Benchmarking and Learning Generalist Embeddings for Tabular Understanding
- SwiftI2V: Efficient High-Resolution Image-to-Video Generation via Conditional Segment-wise Generation
- SkillOS: Learning Skill Curation for Self-Evolving Agents
- RemoteZero: Geospatial Reasoning with Zero Human Annotations
- Beyond Semantic Similarity: Rethinking Retrieval for Agentic Search via Direct Corpus Interaction (DCI)
MiA-Signature: Approximating Global Activation for Long-Context Understanding →
Technical breakdown
Problem: Long-context RAG and agentic systems need a computationally tractable way to identify which parts of a document are globally relevant to a query without attending over every token.
Method: MiA-Signature (Mindscape Activation Signature) builds a compressed representation of the global activation pattern induced by a query using submodular-based selection of high-level concepts that span the activated context space. The selected concepts are optionally refined via lightweight iterative updates through a working-memory mechanism. The resulting signature conditions downstream generation, approximating the full activation state at a fraction of the cost. This is integrated into both standard RAG pipelines and multi-step agentic systems.
Key results:
- Evaluated on long-context QA benchmarks including NarrativeQA, NovelHopQA, and DetectiveQA
- Yields "consistent performance gains" over baseline RAG and agentic systems on multiple long-context understanding tasks
- Instantiated with 8B-parameter embedding models (SFT-Emb-8B, MiA-Emb-8B) released on HuggingFace
- Specific delta numbers not stated in available paper text
Why it matters / caveats: Provides a cognitively inspired mechanism for tractable long-context processing without full attention over all tokens. The approximation trades exact token scoring for efficiency, and performance gains may depend heavily on document structure and task type; failure modes for the signature-based approximation are not analyzed in detail.
MARBLE: Multi-Aspect Reward Balance for Diffusion RL →
Technical breakdown
Problem: Jointly fine-tuning a single diffusion model to optimize multiple reward dimensions simultaneously fails under naive weighted-sum aggregation because most rollouts are informative for only one reward at a time, diluting supervision.
Method: MARBLE (Multi-Aspect Reward BaLancE) maintains independent advantage estimators for each reward dimension, computes separate per-reward policy gradients, normalizes them to remove scale disparities, and then solves a Quadratic Programming (QP) problem at each update step to find the gradient direction that maximally satisfies all reward constraints simultaneously. An amortized formulation exploits the affine structure of the DiffusionNFT loss so the extra QP cost is minimal. EMA smoothing on QP coefficients stabilizes training dynamics.
Key results:
- Evaluated on Stable Diffusion 3.5 Medium optimizing five reward dimensions simultaneously
- Achieves composite reward score of +1.116 vs. +1.015 for sequential multi-stage training and +0.184 for weighted-sum baseline
- Training speed: 0.97x of baseline (vs. 0.56x without amortization)
- Converts worst-aligned reward gradient from being negative in 80% of mini-batches (weighted-sum) to consistently positive
Why it matters / caveats: First multi-reward balancing method for diffusion RL fine-tuning that produces a single unified model without manual stage scheduling. Validated only on image generation; extension to video or world models, and scaling to larger reward sets, remains open.
Skill1: Unified Evolution of Skill-Augmented Agents via Reinforcement Learning →
Technical breakdown
Problem: Existing skill-library agents optimize skill selection, utilization, and distillation in isolation or with separate reward sources, causing conflicting gradients and incomplete evolution.
Method: Skill1 trains a single policy to simultaneously co-evolve all three capabilities under one task-outcome objective using GRPO optimization. The policy generates a search query, re-ranks retrieved skill candidates, solves the task conditioned on the chosen skill, and distills a new skill from the trajectory—all in one forward pass. The single reward signal is decomposed: its low-frequency trend credits skill selection via utility scores, while high-frequency variation credits distillation quality.
Key results:
- ALFWorld: 97.5% average success rate, +2.6 points over RetroAgent, best on 5 of 6 task types
- WebShop: best performance across all methods tested
- Ablation: removing any single component degrades performance by 2.6–5.7 percentage points
- Skill library capped at 5,000 entries
Why it matters / caveats: Demonstrates that joint co-evolution of all skill-library operations outperforms piecemeal approaches. Evaluation is restricted to two text-based environments (ALFWorld, WebShop), and the fixed library capacity may bottleneck agents facing diverse task distributions.
When to Trust Imagination: Adaptive Action Execution for World Action Models →
Technical breakdown
Problem: World Action Models (WAMs) that jointly predict visual futures and actions execute a fixed number of predicted actions per inference, leaving the robot unable to detect when predicted futures diverge from physical reality.
Method: FFDC-WAM adds a lightweight verifier called Future Forward Dynamics Causal Attention (FFDC) to standard WAM inference. FFDC is a structured Transformer that jointly attends over predicted future actions, predicted visual tokens, current real observations, and language instructions using a Boolean visibility mask enforcing temporal causality. It outputs a scalar confidence score per time-step; when confidence drops below a threshold (0.5), the system triggers replanning instead of continuing to execute stale predictions.
Key results:
- RoboTwin benchmark: reduces model forward passes by 69.10% and execution time by 34.02% while improving success rate by +2.54%
- Hard tasks: success rate improves from 54.20% to 76.40% (random setting)
- Real-world (Astribot S1 robot): +35% success rate vs. fixed short-chunk execution
Why it matters / caveats: Transforms open-loop action chunking into adaptive verification-aware control, improving both efficiency and robustness. Limitations include reliance on binary supervision from synthetic corruptions, a fixed detection threshold lacking sensitivity analysis, and evaluation on a relatively narrow set of manipulation tasks.
Continuous Latent Diffusion Language Model (Cola DLM) →
Technical breakdown
Problem: Autoregressive language models couple text generation to a fixed left-to-right token order, and existing diffusion-based alternatives struggle to jointly achieve generation efficiency, scalable representation learning, and effective global semantic modeling.
Method: Cola DLM is a three-component hierarchical latent diffusion language model. First, a Text VAE learns a stable text-to-latent mapping. Second, a block-causal Diffusion Transformer (DiT) models a global semantic prior in continuous latent space using flow matching, treating generation as latent prior transport rather than token-level observation recovery. Third, a conditional decoder maps latent representations back to discrete text. The unified Markov-path perspective separates global semantic organization (handled by the DiT) from local textual realization (handled by the decoder), enabling non-autoregressive inference.
Key results:
- Evaluated on 8 benchmarks: LAMBADA, MMLU, SIQA, SQuAD, Story Cloze, OBQA, RACE, HellaSwag
- Compared at ~2B-parameter scale; scaling curves extend to ~2000 EFLOPs
- Demonstrates favorable few-shot accuracy relative to matched autoregressive baselines
- Specific accuracy numbers not stated in available paper text; perplexity metrics are noted to mismatch actual generation quality
Why it matters / caveats: Establishes hierarchical latent decomposition as a principled alternative to token-level language modeling and positions continuous latent spaces as a bridge toward multimodal generation. A structural gap exists between likelihood estimation and generation quality, requiring few-shot accuracy (rather than perplexity) as the primary evaluation metric; VAE pretraining adds overhead.
RaguTeam at SemEval-2026 Task 8: Meno and Friends in a Judge-Orchestrated LLM Ensemble for Faithful Multi-Turn Response Generation →
Technical breakdown
Problem: Generating faithful responses grounded in reference passages across multi-turn dialogue (MTRAGEval Task B) requires balancing model diversity, factual adherence, and cost efficiency.
Method: The system is a heterogeneous ensemble of seven LLMs spanning multiple model families and scales, each prompted with two variants. A GPT-4o-mini judge evaluates all 14 candidate responses per instance and selects the best one. The team also introduces Meno-Lite-0.1, a cost-efficient 7B domain-adapted model. Ablations show that diversity in model families, scales, and prompting strategies is the key driver—the ensemble consistently beats any single constituent model.
Key results:
- Ranked 1st out of 26 teams at SemEval-2026 Task 8 (MTRAGEval Task B)
- Conditioned harmonic mean: 0.7827 vs. strongest baseline gpt-oss-120b at 0.6390 (+22.5%)
- Ensemble outperforms every single constituent model in ablations
Why it matters / caveats: Demonstrates that judge-orchestrated ensemble diversity is a practical and effective strategy for faithful generation competitions. Evaluation is tied to MTRAGEval's benchmark design, which the authors acknowledge has annotation limitations that may affect generalization of findings.
Nonsense Helps: Prompt Space Perturbation Broadens Reasoning Exploration (LoPE) →
Technical breakdown
Problem: In GRPO-based RL training for LLMs, hard questions where all sampled rollouts fail produce zero-advantage gradients, wasting training compute with no learning signal.
Method: Lorem Perturbation for Exploration (LoPE) prepends randomly generated pseudo-Latin text sequences (drawn from a 63-word Latin vocabulary) to failed questions before resampling. Successful resampled responses are regrouped with original failures to maintain group size G. Importance sampling corrections and policy/advantage shaping handle the off-policy optimization introduced by the distribution shift. The perturbation must be low-perplexity enough not to corrupt model coherence but orthogonal enough to shift the output distribution into unexplored reasoning pathways.
Key results:
- Qwen3-1.7B-Base: +2.79 average points across reasoning benchmarks
- Qwen3-4B-Base: +4.62 average points
- Qwen2.5-Math-7B: +6.20 average points
- On a hard 352-question subset: resolves 50 unique questions that neither the baseline nor high-temperature resampling could solve
Why it matters / caveats: Shows that prompt-space perturbations unlock orthogonal reasoning pathways more effectively than logit-space methods for exploration. Method requires careful calibration of perturbation magnitude; excessive noise produces incoherent outputs and there are no safety controls over the generated content during perturbed rollouts.
Continuous-Time Distribution Matching for Few-Step Diffusion Distillation (CDM) →
Technical breakdown
Problem: Distribution Matching Distillation (DMD) for accelerating diffusion models relies on sparse supervision at a few predefined discrete timesteps, causing visual artifacts and over-smoothing in few-step generation.
Method: CDM (Continuous-Time Distribution Matching) migrates the DMD framework from discrete timestep anchoring to continuous-time optimization. It replaces fixed anchor timesteps with a dynamic continuous schedule of random length and adds a continuous-time alignment objective that performs active off-trajectory matching on latents extrapolated via the student model's own velocity field. This enhances generalization and detail preservation without requiring auxiliary GANs or reward models.
Key results:
- Evaluated on SD3-Medium and Longcat-Image architectures
- Described as achieving "highly competitive visual fidelity" for few-step generation
- Specific FID/IS/clip-score numbers not stated in available paper text
Why it matters / caveats: Eliminates reliance on complex auxiliary modules for visual quality restoration and provides a theoretically cleaner optimization objective for diffusion distillation. Quantitative benchmarks are not reported in accessible paper sections, making it difficult to assess magnitude of improvement.
Auto Research with Specialist Agents Develops Effective and Non-Trivial Training Recipes →
Technical breakdown
Problem: ML research automation typically produces generated reports or single checkpoints; this work asks whether a fully closed empirical loop of agent-proposed code edits, real GPU execution, and external measurement can autonomously improve public training recipes.
Method: A specialist agent swarm partitions recipe surfaces by domain expertise (architecture, optimization, data augmentation, etc.), with 10 agents for parameter-constrained tasks and 5 for others. Each agent receives role-based prompts, writes Python code diffs, submits trials to real GPUs, and receives externally measured outcomes and failure labels. Agents share a "measured lineage" of all prior trial outcomes across the swarm, enabling cross-agent learning. The system runs a propose-execute-measure-revise cycle with no human intervention.
Key results:
- Parameter Golf task: 0.81% validation bits-per-byte reduction (1.0810 -> 1.0722)
- NanoChat-D12: 38.7% CORE improvement (0.1618 -> 0.2244)
- CIFAR-10 Airbench96: 4.59% wall-clock speedup (26.356s -> 25.146s)
- 1,197 headline trials + 600 control trials executed autonomously
- 157/1,197 trials (13.1%) involved non-scalar program modifications
Why it matters / caveats: The auditable trajectory of proposals, diffs, and measurements is itself a research artifact—not just a checkpoint. Improvements are compositional (combining known techniques) rather than paradigm-level; the approach requires fast feedback loops and affordable per-trial GPU costs.
Audio-Visual Intelligence in Large Foundation Models →
Technical breakdown
Problem: The rapidly expanding field of audio-visual AI lacks a unified taxonomy and comprehensive review covering understanding, generation, and interaction tasks through the lens of large foundation models.
Method: This is a survey paper. It organizes Audio-Visual Intelligence (AVI) into three domains—understanding (speech recognition, sound localization), generation (audio-driven video synthesis, video-to-audio), and interaction (dialogue, embodied/agentic interfaces)—and synthesizes approaches spanning modality tokenization, cross-modal fusion, autoregressive and diffusion-based generation, large-scale pretraining, instruction alignment, and preference optimization.
Key results:
- Not stated (survey paper; no novel experimental results)
- Covers 56 pages, 16 figures, 24 tables; curates representative datasets, benchmarks, and evaluation metrics across task families
Why it matters / caveats: Provides the first comprehensive AVI review through the large foundation model lens, consolidating a fragmented field. As a retrospective survey, it cannot keep pace with rapidly evolving methods, and open challenges (synchronization, spatial reasoning, controllability, safety) are identified but not solved.
A2TGPO: Agentic Turn-Group Policy Optimization with Adaptive Turn-level Clipping →
Technical breakdown
Problem: Multi-turn LLM agents trained with trajectory-level outcome rewards cannot distinguish the contribution of individual tool calls, wasting signal on uninformative turns.
Method: A2TGPO (Agentic Turn-Group Policy Optimization with Adaptive Turn-level Clipping) normalizes Information Gain (IG) signals within (prompt, turn-index) groups rather than pooling all turns, ensuring each turn is compared only to peers at identical interaction depths. Cumulative normalized IG is divided by sqrt(accumulated terms) to maintain consistent advantage magnitude across trajectory depths (Variance-Rescaled Discounted Accumulation). Finally, Adaptive Turn-Level Clipping modulates the PPO clip range for each turn proportionally to its normalized IG—widening bounds for informative turns and narrowing them for uninformative ones.
Key results:
- +1.75 EM on multi-hop QA benchmarks (average across baselines)
- +1.69 EM on single-hop QA benchmarks
- Evaluated on 7 datasets: HotpotQA, 2WikiMultihopQA, MuSiQue, Bamboogle, NQ, TriviaQA, PopQA
- Consistently outperforms DAPO and IGPO across three model sizes
Why it matters / caveats: Achieves per-turn credit assignment without external reward models or tree-based rollout constraints. Requires ground-truth answers for IG computation, limiting applicability to tasks with verifiable outcomes; IG computation adds ~164 seconds overhead per training step.
UniPool: A Globally Shared Expert Pool for Mixture-of-Experts →
Technical breakdown
Problem: Standard MoE architectures allocate a separate expert set per transformer layer, causing expert parameters to grow linearly with model depth and preventing any cross-layer expert reuse.
Method: UniPool replaces per-layer expert ownership with a single globally shared pool of M experts, accessed by independent per-layer routers. A pool-level auxiliary loss balances utilization across all layers jointly rather than per-layer. NormRouter replaces the standard softmax gating with L2-normalization followed by ReLU scoring, providing stable and sparse routing into the larger shared pool without the winner-take-all collapse typical of softmax on large candidate sets.
Key results:
- Five model scales from 182M to 978M parameters trained on 30B Pile tokens
- Reduces validation loss by up to 0.0386 vs. matched vanilla MoE
- Reduced-pool variants using 41.6–66.7% of vanilla expert parameters match or outperform standard MoE
- Consistent gains on 7 zero-shot downstream benchmarks
- UniPool routers carry 4.1x more information than vanilla MoE routers (accuracy drop under routing randomization: -4.1 vs. -1.3)
Why it matters / caveats: Demonstrates that expert parameters need not scale linearly with depth, enabling more parameter-efficient MoE scaling. Experiments are limited to <=978M parameters; wall-clock throughput comparisons absent; few-shot evaluation not included.
ReflectDrive-2: Reinforcement-Learning-Aligned Self-Editing for Discrete Diffusion Driving →
Technical breakdown
Problem: Autonomous driving planners that edit their own trajectory drafts have shallow self-correction when the draft and edit stages are trained independently, limiting the practical benefit of in-place revision.
Method: ReflectDrive-2 is a masked discrete diffusion planner that represents trajectories as 16 discrete BEV coordinate tokens and generates them via parallel masked decoding using a shared bidirectional Transformer backbone over vision, language, ego-state, and action tokens. AutoEdit rewrites selected trajectory tokens in-place using the same backbone without an auxiliary refinement network. Training is two-stage: supervised pretraining followed by RL fine-tuning of the full decision-draft-reflect rollout, assigning terminal driving reward to the post-edit trajectory and propagating policy-gradient credit through all transitions.
Key results:
- 91.0 PDMS on NAVSIM benchmark (camera-only)
- 94.8 PDMS under best-of-6 oracle selection
- AutoEdit gain: +0.3 PDMS before RL -> +1.9 PDMS after RL training
- Field loss ablation: +2.4 PDMS
- 31.8 ms average per-frame latency on NVIDIA Thor
Why it matters / caveats: Shows that coupling draft and edit under a shared RL reward significantly amplifies correction effectiveness. Fixed-resolution BEV tokenization bounds spatial precision; lightweight closed-loop rewards are proxies for real-world driving objectives; AutoEdit targets longitudinal/lateral errors but not interaction-level failures.
TabEmbed: Benchmarking and Learning Generalist Embeddings for Tabular Understanding →
Technical breakdown
Problem: No unified embedding model exists for tabular data that supports both classification and retrieval while capturing numerical semantics and structural information; existing text embeddings miss tabular structure and LLM-based methods lack retrieval-compatible vector outputs.
Method: TabEmbed is built on the Qwen3-Embedding backbone and trained with a language-to-row contrastive learning framework. Rather than row-to-row matching, it synthesizes natural language queries as contrastive anchors paired with serialized tabular rows. Positive-aware hard negative mining uses numerically similar values and closely related classes to force sharp decision boundaries. Evaluation uses TabBench, a new benchmark designed to jointly assess tabular classification and retrieval within a shared embedding space.
Key results:
- TabEmbed-0.6B: 65.27% accuracy, 71.72% MRR@10 on TabBench
- TabEmbed-8B: 71.62% accuracy, 80.58% MRR@10
- 0.6B variant outperforms all tested baselines including 7–8B parameter models
- 35+ point improvement in retrieval metrics vs. baseline Qwen3-0.6B
Why it matters / caveats: Establishes the first generalist tabular embedding model and comprehensive benchmark, enabling semantic search over structured data. Fails on extremely wide tables (hundreds of columns) where serialization exceeds context limits; evaluation excludes commercial APIs like Google Gemini.
SwiftI2V: Efficient High-Resolution Image-to-Video Generation via Conditional Segment-wise Generation →
Technical breakdown
Problem: Generating high-resolution (2K) image-to-video with realistic temporal dynamics and input-faithful appearance is extremely computationally expensive with existing end-to-end approaches.
Method: SwiftI2V uses a two-stage cascaded architecture. Stage I generates a low-resolution (360P) motion reference using a large DiT backbone with LoRA adapters, reducing token count and easing motion modeling. Stage II performs 2K detail synthesis via Conditional Segment-wise Generation (CSG), which partitions temporal sequences into bounded segments with bidirectional contextual interaction between anchor (input image), neighbor, and current noisy blocks, preventing temporal error accumulation. Stage-Transition Training closes the train-test gap by synthesizing Stage II inputs from corrupted-then-denoised Stage I outputs.
Key results:
- VBench-I2V at 2K (2560x1408): Total Score 6.4244, I2V Background 0.9975 (both best among tested methods)
- 202x GPU-time reduction vs. end-to-end baseline CineScale
- Inference time: 111 seconds (single H800) vs. 5,600 seconds for CineScale
- Peak memory: 33.5 GB, deployable on consumer RTX 4090
Why it matters / caveats: Enables practical 2K video generation on commodity hardware, dramatically lowering deployment barriers. Two-stage modular design adds system complexity; does not achieve real-time synthesis; separate stage optimization is non-trivial.
SkillOS: Learning Skill Curation for Self-Evolving Agents →
Technical breakdown
Problem: LLM-based agents deployed on streaming tasks fail to self-evolve because skill curation from past experience is done with manual heuristics or un-aligned LLM calls rather than a learned, task-outcome-driven policy.
Method: SkillOS pairs a frozen executor that retrieves and applies skills with a trainable skill curator optimized via RL. The curator manages a SkillRepo of Markdown-format skill files via insert/update/delete operations. Training uses grouped task streams where earlier trajectories populate skills that later related tasks evaluate. The composite reward spans task outcomes, function call validity, skill quality, and repository compression. BM25 retrieval is used for skill lookup.
Key results:
- ALFWorld: 61.2% success rate vs. 55.7% for ReasoningBank; 2.2–3.1 fewer interaction steps
- WebShop: 40.6 score vs. 35.7 for MemP baseline (Qwen3-8B executor)
- Reasoning tasks (AIME24/AIME25/GPQA): 73.8% average accuracy vs. 69.1% for MemP
- Cross-executor: improves Gemini-2.5-Pro from 66.4% to 80.2% on ALFWorld
Why it matters / caveats: Demonstrates that a learned curation policy outperforms frontier LLMs used naively as curators, suggesting alignment matters as much as raw model capability. Limitations include simplified Markdown skill representation, BM25 (not semantic) retrieval, and a frozen executor that cannot adapt during deployment.
RemoteZero: Geospatial Reasoning with Zero Human Annotations →
Technical breakdown
Problem: Geospatial reasoning models for Earth observation still require human-annotated ground-truth coordinates for training supervision; RemoteZero removes this dependency entirely.
Method: RemoteZero uses a Generate-Crop-Verify loop within a GRPO framework. The policy generates reasoning chains and bounding boxes, which are cropped with contextual padding and passed to a verifier that assesses semantic consistency with the natural language query—producing an intrinsic reward (verification confidence minus area penalty) instead of coordinate IoU. Self-evolution is enabled by using the previous iteration's frozen policy as the verifier for the next training iteration, allowing bootstrapped improvement without any human labels.
Key results:
- EarthReason benchmark: 71.29% test Acc@0.5 (with self-evolution), surpassing supervised RemoteReasoner by +3.18 pp
- With external verifier: 65.05% Acc@0.5 without ground-truth boxes
- gIoU: 61.70 vs. RemoteReasoner's 69.29 (weaker spatial precision)
Why it matters / caveats: Proves semantic verification can supervise spatial reasoning without coordinate labels, enabling training on unlabeled remote sensing data at scale. Verifier rewards emphasize semantic correctness over boundary precision (lower gIoU); self-evolution may accumulate verifier bias across iterations; crop-based verification may miss global spatial relations.
Beyond Semantic Similarity: Rethinking Retrieval for Agentic Search via Direct Corpus Interaction (DCI) →
Technical breakdown
Problem: Standard retrieval interfaces (lexical or semantic top-k) compress corpus access into a single step that cannot support exact lexical constraints, sparse clue conjunctions, local context checks, or multi-step hypothesis refinement needed by agentic search.
Method: Direct Corpus Interaction (DCI) allows agents to search raw corpora using general-purpose terminal tools—grep, file reads, shell commands, lightweight scripts—without any embedding model, vector index, or retrieval API. There is no offline indexing step, which allows natural adaptation to evolving local corpora and enables programmatic, multi-step corpus manipulation driven by the agent's own reasoning.
Key results:
- Substantially outperforms strong sparse, dense, and reranking baselines on BRIGHT and BEIR datasets
- Attains strong accuracy on BrowseComp-Plus and multi-hop QA
- Specific numerical scores not stated in available paper text
Why it matters / caveats: Opens retrieval interface design as an explicit research axis, suggesting that query-answering quality depends on interface resolution as much as on model reasoning ability. Raw corpus manipulation may be computationally expensive at scale; paper does not address cost or latency tradeoffs vs. pre-indexed baselines.