Pith. sign in

REVIEW 4 major objections 5 minor 42 references

Long SKILL Compliance as Logical Reasoning: Closure-Grounded Detection with Scaling-Guided On-Policy Distillation

T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read A two-layer policy graph turns long SKILL auditing into dependency reasoning, lifting detection F1 by up to 12.8 points while cutting online token use by up to 64.3 percent.

desk verdict The two-layer CDG and closure pipeline are a genuinely useful idea with real token savings, but the paper's F1 claims are contradicted by its own Table 2 at larger scales, and the scaling model is fit to the same data it is used to explain. read the letter →

arxiv 2608.08146 v1 pith:AQREJLTT submitted 2026-08-08 cs.AI

classification cs.AI
keywords compliancedetectionconstraintdependencygraphSKILLdocumentsclosurepolicyauditingscalinglawon-policydistillationretrievalaugmentation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Long enterprise SKILL documents give agents operating rules, but auditing whether an agent followed them is hard because the governing workflow, its prerequisites, and its exceptions are scattered across thousands of tokens. This paper claims that the right representation fixes the problem: convert each SKILL into a two-layer constraint dependency graph, retrieve the relevant scenario and seed rules, then expand along mandatory "require" edges into a dependency closure before asking an LLM to judge compliance. Against raw-policy and LightRAG baselines, SkillCDG improves detection F1 by up to 12.8 percentage points while cutting average online token use by up to 64.3 percent. The paper also claims a complexity-aware scaling relationship in Eq. 3 that predicts a 27B model's performance from smaller checkpoints, and uses the predicted teacher–student headroom to allocate a fixed on-policy distillation budget, letting a 4B student beat or match a 9B teacher on two datasets.

What carries the argument

The machinery is the constraint dependency graph (CDG): a two-layer directed graph whose upper layer indexes SKILL names and descriptions for scenario routing and whose lower layer stores atomic condition–action rules linked by "require" edges, meaning that judging one rule obliges also checking another rule as a prerequisite. The argument runs on three operations: block-wise LLM extraction of atomic rules and local edges, cross-block fusion to reconnect prerequisites across Markdown sections, and online transitive dependency closure from lexically matched seed rules. This closure is what supplies the judge with the full prerequisite set while keyword filtering removes irrelevant content; the same graph yields the complexity metric $C_i = I_{d,i} I_{c,i}$ (rule density times dependency coupling) used in the scaling model. The second machine is Eq. 3, a saturating logistic model of per-instance correctness as a function of parameter count, with a complexity-dependent gain term; it is fit on four checkpoints and used to rank samples by predicted teacher–student headroom for distillation.

What would settle it

Run the pipeline on a held-out public corpus with independently audited violation labels and a manually verified constraint graph: the central claims would fail if dependency closure over require edges does not beat flat raw-document judging on dependency-heavy policies, or if Eq. 3, fitted on the 0.8B, 2B, 4B, and 9B checkpoints, does not predict the next checkpoint from the same model family.

Watch

Extended reading notes

Core claim

The central claim is that long-policy compliance detection should be treated as action-conditioned logical reasoning over a structured policy graph rather than as flat-text reading. The paper represents business policies as atomic condition–action rules linked by a uniform "require" semantics, where one rule's compliance status depends on evaluating another rule as a prerequisite, making prerequisite completion explicit instead of leaving it implicit inside the judge. Inference retrieves candidate SKILLs by scenario, retrieves seed rules lexically, computes the transitive closure over require edges, and renders only that closure to the judge, with source spans retained for traceability. The authors argue that this separation of policy access, dependency reasoning, and judgment is what accounts for the measured gains, and that the same graph's rule density and dependency coupling define an instance-difficulty metric that predicts how much larger models improve.

Load-bearing premise

The gold labels come from operational records that already contain human assessments, and the constraint dependency graph is built by LLM extraction that is later checked by experts; if those labels or the extracted rule graphs are systematically wrong, every measured gain inherits the error.

Editorial extensions

If this is right

  • Compact judges benefit most: on 4B and 9B models SkillCDG raises detection F1 by up to 12.8 and 10.8 points respectively, so structured policy access and larger model capacity solve complementary parts of the task.
  • Dependency closure is the load-bearing component: removing it costs up to 7.5 F1 points on Qwen3.5-27B, a larger drop than removing keyword filtering, which mainly controls context length.
  • Token savings grow with document length: the largest reduction is 64.3% on the longest dataset (Fulfillment), with 33.9% and 39.1% on the other two enterprise datasets.
  • The fitted scaling relation extrapolates to an unseen checkpoint: 27B results align with the trend fitted on the 0.8B, 2B, 4B, and 9B checkpoints, so CDG-derived complexity can predict where extra capacity pays off.
  • A fixed distillation budget goes further when samples are ranked by predicted teacher–student headroom: the 4B student recovers 127.7% and 166.7% of the F1 gap on two datasets, compared with 85.1% and 83.3% under uniform sampling.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The "require"-edge semantics should transfer to any rule-based auditing domain where one obligation conditions another, such as regulatory compliance, contract review, or safety checklists; a public benchmark with dependency-rich policies would test this transfer.
  • The complexity metric $C_i$ could be used at policy-authoring time: authors could see when new passages add many prerequisite edges and restructure documents to reduce audit difficulty before deployment.
  • The scaling predictor, if stable across model families, could drive dynamic model routing, sending low-complexity samples to a small judge and high-complexity samples to a large one; the paper reports the needed components but does not assemble that cost-accuracy controller.
  • Because dependency closure makes the judgment basis explicit, SkillCDG verdicts come with an inspectable chain of rule identifiers and source spans, which could serve as a human-review artifact; the paper demonstrates this in a case study but does not turn it into a formal audit-trail metric.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes SkillCDG, a framework that converts long SKILL policy documents into a two-layer constraint dependency graph (CDG), retrieves scenario-relevant atomic rules, expands prerequisite dependencies via transitive closure, and feeds the resulting compact context to an LLM judge. Across three enterprise datasets and two variants of CompliBench, the authors report accuracy and F1 improvements over RawSkill and LightRAG baselines, particularly for small models, along with token-consumption reductions. The paper further fits an empirical scaling model (Eq. 3) relating model parameter count and CDG-based complexity to per-instance correctness, uses the fitted model to estimate teacher–student headroom, and shows that selecting on-policy distillation samples by that headroom improves recovery of the teacher's F1 relative to uniform sampling.

Significance. If the empirical claims are upheld, SkillCDG would be a practical contribution to enterprise compliance auditing: it makes prerequisite dependencies explicit, enables source traceability, and reduces inference cost substantially (64.3% token reduction on Fulfillment). The scaling-guided sample-selection idea is a useful bridge between scaling-law analyses and distillation data curation. The paper ships algorithms (Algorithms 1 and 2) and a controlled ablation (Table 5) that isolate the value of dependency closure; these are strengths. However, the central detection-accuracy claim is weakened by the F1 collapse at Qwen3.5-27B in Table 2, and the scaling-law validation is not backed by numeric leave-one-scale-out evidence, so the significance cannot be fully assessed as submitted.

major comments (4)
  1. [Table 2, Section 4.2] In the Qwen3.5-27B rows of Table 2, SkillCDG F1 is 46.5/40.7/45.6 on Fulfillment/AfterSales/MerchantSupport, which is 7.6–15.5 points below RawSkill F1 (54.1/56.2/58.7), while SkillCDG ACC is simultaneously higher than RawSkill ACC; Section 4.2 reports only the ACC gains ('raises ACC by 13.2, 1.8, and 9.2 points') and the abstract claims general F1 superiority, so the central efficacy claim is scale-limited at best. The large ACC–F1 divergence at 27B (e.g., 67.6 ACC vs 46.5 F1 on Fulfillment) is not discussed, and the paper should report, explain, and condition its claims on this pattern.
  2. [Section 4.3, Figure 3; Eq. 5 in Section 4.5] The leave-one-scale-out validation of Eq. 3 is asserted but no predicted-versus-observed values, confidence intervals, or a table are provided, so the extrapolation to the 27B checkpoint cannot be assessed. Moreover, Eq. 3 is fit on the same five datasets used for the main results, and the headroom score g_i in Eq. 5 is computed directly from that fitted model, so the RQ4 sample-selection experiment does not independently validate the scaling law. Please provide leave-one-scale-out numeric results with uncertainties and clarify the logical status of the RQ4 test.
  3. [Section 3.2, RQ2] The model-selection procedure (session-grouped five-fold cross-validation with the one-standard-error rule) and the comparison against the additive logistic and nested saturating models are described but no results of these comparisons are reported; the claim that the data favor the parsimonious form over a scale–complexity interaction is unsupported. Additionally, C0 is defined as the training-fold median, making the complexity normalization training-set-dependent, and the paper does not state how C0 is computed for an unseen test instance.
  4. [Appendix B.4] The gold-label provenance is described as pre-existing 'independent human assessment' in operational records, but there is no reporting of label-level inter-annotator agreement, instructions to annotators, or reconciliation with model-based assessments; since all downstream enterprise results depend on these labels, the absence of any label-quality validation is a load-bearing gap rather than a presentation issue.
minor comments (5)
  1. [Section 4.2, Table 2] The sentence 'At 27B, it further raises ACC by 13.2, 1.8, and 9.2 points' omits the corresponding F1 changes, which are negative in all three datasets; please report both metrics consistently in the same passage.
  2. [Figure 3] The caption says 'three business datasets' but Section 4.3 says the scaling model is fit on all five datasets; please clarify which datasets are displayed and whether the shown curves come from the full fit.
  3. [Section 4.5, Table 6] Recovery values exceeding 100% (127.7% and 166.7%) are presented without discussion of the variance of the F1 estimates; confidence intervals or a repeated-trial analysis would help the reader judge whether the student truly surpasses the teacher.
  4. [Eq. 6 in Section 4.5] The recovery measure is undefined when teacher and base F1 are equal; please state the assumption or handle the degenerate case explicitly.
  5. [Algorithm 2, Section 3.1.3] When the seed-rule set is empty, Algorithm 2 falls back to full-rule coverage; this behavior should be mentioned in the main-text pipeline description because it affects the strength of the 'filtering' claim for samples with no keyword match.

Circularity Check

1 steps flagged · score 4.0 of 10

RQ4's headroom score is computed from a scaling model fitted on the same 4B/9B data and the same datasets used to measure distillation recovery, so the OPD result does not independently validate the scaling-guided selection.

  1. fitted input called prediction [Sec. 4.3 (Eq. 3 fit); Sec. 4.5 (Eq. 5); Appendix D.1 (same data pool)]
    "We fit task-specific scaling equations using samples from all five datasets with model sizes N∈{0.8,2,4,9}B ... We instead use the fitted model in Eq. 3 to estimate where Qwen3.5-9B offers Qwen3.5-4B the greatest headroom. For instance i from dataset di, the score is g_i = \hat P_{9B}(C_i,d_i)-\hat P_{4B}(C_i,d_i)."

    The headroom in Eq. 5 is not a held-out prediction: Eq. 3 was fitted to per-sample Bernoulli outcomes at N=4B and N=9B on all five datasets, and the three enterprise datasets are also the source of the 2,000 OPD training instances and of the Table 6 evaluation. Hence g_i is a smooth re-expression of the observed 4B-vs-9B correctness difference on those very instances. Selecting the highest g_i and reporting how much of the teacher-student F1 gap is recovered then tests the fitted values against the same gap used to produce them; the 127.7%/166.7% recovery figures cannot independently validate the scaling model or the headroom metric.

full rationale

The core SkillCDG effectiveness comparison (Tables 2-4) is a self-contained empirical evaluation against RawSkill and LightRAG under matched controls described in Appendix B.5, including transfer to the public CompliBench and CompliBench-Long benchmarks; that part is not circular. The Sec. 4.2 selective reporting of ACC gains while omitting the 27B F1 deficits shown in Table 2, and the Sec. 4.3 assertion that Qwen3.5-27B 'aligns with the fitted trend' without a predicted-versus-actual table, are evidence gaps and correctness risks rather than circular reductions. The one identifiable circular step is in RQ4: Eq. 5 is computed directly from Eq. 3, and Eq. 3 was fitted on the same four checkpoints (including the 4B student and 9B teacher) and on the same enterprise datasets from which the OPD training instances are drawn and on which the recovery is measured. The scaling-guided OPD result therefore cannot independently confirm the scaling-derived headroom. The CDG-complexity metric shares its graph representation with the retrieval mechanism, but C_i is defined from graph statistics alone and used as a covariate, so that shared origin is a confounding concern rather than a definitional circularity. Because the central retrieval claim retains independent support from public-benchmark transfer and from compact-judge F1 gains, the overall circularity score is moderate.

Assumptions & free parameters 7 free parameters · 4 assumptions · 1 invented entities

The central claims rest on several fitted parameters in the scaling model, the assumption that human-assessed source labels and LLM-extracted graphs are trustworthy, and the invented complexity measure. Each of these is a potential source of bias if the fitted model or the extracted graphs are systematically wrong.

free parameters (7)
  • gamma_data (dataset intercept)
    Dataset-specific intercepts are fit to the five evaluation datasets.
  • eta
    Complexity effect parameter in Eq. 3, fitted from sample-level Bernoulli outcomes.
  • beta
    Scale-saturation amplitude in Eq. 3, fitted from data.
  • rho
    Scale-saturation rate in Eq. 3, fitted from data.
  • alpha
    Scale exponent in Eq. 3, fitted from data.
  • lambda
    Complexity interaction parameter in Eq. 3, fitted from data.
  • C0 (training-fold median)
    A data-derived normalization constant used to define eC_i.
assumptions (4)
  • domain assumption The source enterprise records contain an independent human assessment that serves as a reliable gold label.
    The paper states this in Appendix B.4, but only one case is manually verified.
  • domain assumption LLM-extracted atomic rules and require edges faithfully represent the business policy semantics.
    The graph construction is LLM-based; expert agreement is high in Table 10 but this is still an upstream assumption.
  • domain assumption The regression model form in Eq. 3, with its chosen functional families, is flexible enough to capture the true scale-complexity relationship.
    The paper compares only three variants (interacting, additive, and lambda=0), so the family space is limited.
  • domain assumption Session-grouped cross-validation and the one-standard-error rule select a model that generalizes to new sessions.
    The selection procedure is standard but its validity is assumed.
invented entities (1)
  • Policy-graph complexity C_i = I_d * I_c
    purpose: A scalar measure of instance difficulty used in the scaling model and distillation sample selection.
    The measure is a heuristic product of token density and dependency coupling, and the paper provides no external validation that it is the true difficulty measure.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Long SKILL Compliance as Logical Reasoning: Closure-Grounded Detection with Scaling-Guided On-Policy Distillation." pith.science (2026). https://pith.science/paper/AQREJLTT

@misc{pith2026260808146,
  author       = {Pith},
  title        = {Pith review of: Long SKILL Compliance as Logical Reasoning: Closure-Grounded Detection with Scaling-Guided On-Policy Distillation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AQREJLTT}},
  note         = {Machine review of arXiv:2608.08146}
}
read the original abstract

The increasing complexity of enterprise business scenarios has promoted the widespread adoption of long SKILL documents in agent systems, posing new challenges for compliance detection: large models incur substantial inference costs, while small models may fail to maintain detection accuracy. To address this gap, we propose SkillCDG, a graph-based framework for long SKILL compliance detection. SkillCDG represents complex business policies as a two-layer constraint dependency graph, where the upper layer indexes SKILL descriptions for scenario routing and the lower layer captures dependencies among atomic constraints within each SKILL. During inference, two-level retrieval followed by dependency closure supports compliance judgment and source traceability. We comprehensively evaluate the framework on three enterprise datasets and two controlled public benchmark variants. Experimental results demonstrate that SkillCDG outperforms baseline methods by up to 12.8 percentage points in detection F1 score, while reducing token consumption by a maximum 64.3\%. Moreover, we further investigate the inherent relationships among policy-graph complexity, model scale, and detection performance. Comparative experiments conducted on four checkpoints from a single model family validate a concise and effective scaling trend: end-to-end detection correctness exhibits a complexity-differentiated scaling pattern, and the complexity metric derived from the constraint dependency graph can effectively quantify instance difficulty and the performance improvement potential of models. Leveraging this insightful scaling trend, we conduct adaptive training sample selection and adopt on-policy distillation to efficiently enhance the compliance detection capability of small-scale models.

Figures

Figures reproduced from arXiv: 2608.08146 by the authors.

Figure 1
Figure 1. Identical responses may result from compliant [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of SkillCDG. The offline stage converts long SKILL business policies into a two-layer constraint [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. Fitted end-to-end correctness at the 10th and [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

42 extracted references · 19 canonical work pages

  1. [1]

    arXiv preprint arXiv:2602.12670 , year=

    SkillsBench: Benchmarking How Well Agent Skills Work Across Diverse Tasks , author=. arXiv preprint arXiv:2602.12670 , year=

  2. [2]

    Qwen3.5: Accelerating Productivity with Native Multimodal Agents , url =

    Qwen Team , month =. Qwen3.5: Accelerating Productivity with Native Multimodal Agents , url =

  3. [3]

    2026 , eprint=

    DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence , author=. 2026 , eprint=

  4. [4]

    arXiv preprint arXiv:2603.15401 , year=

    SWE-Skills-Bench: Do Agent Skills Actually Help in Real-World Software Engineering? , author=. arXiv preprint arXiv:2603.15401 , year=

  5. [5]

    2026 , eprint=

    SkillLearnBench: Benchmarking Continual Learning Methods for Agent Skill Generation on Real-World Tasks , author=. 2026 , eprint=

  6. [6]

    2026 , eprint=

    SkillAudit: From Fixed-Suite Benchmarking to Skill-Centered Assessment , author=. 2026 , eprint=

  7. [7]

    arXiv preprint arXiv:2311.07911 , year=

    Instruction-following evaluation for large language models , author=. arXiv preprint arXiv:2311.07911 , year=

  8. [8]

    arXiv preprint arXiv:2410.15553 , year=

    Multi-if: Benchmarking llms on multi-turn and multilingual instructions following , author=. arXiv preprint arXiv:2410.15553 , year=

Show all 42 references
  1. [9]

    Proceedings of the AAAI Conference on Artificial Intelligence , volume=

    Can large language models understand real-world complex instructions? , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=

  2. [10]

    2025 , eprint=

    Generalizing Verifiable Instruction Following , author=. 2025 , eprint=

  3. [11]

    Advances in Neural Information Processing Systems , volume=

    Benchmarking complex instruction-following with multiple constraints composition , author=. Advances in Neural Information Processing Systems , volume=

  4. [12]

    arXiv preprint arXiv:2406.12045 , year=

    tau-bench: A Benchmark for Tool-Agent-User Interaction in Real-World Domains , author=. arXiv preprint arXiv:2406.12045 , year=

  5. [13]

    arXiv preprint arXiv:2506.07982 , year=

    tau2-Bench: Evaluating Conversational Agents in a Dual-Control Environment , author=. arXiv preprint arXiv:2506.07982 , year=

  6. [14]

    arXiv preprint arXiv:2601.00596 , year=

    Beyond IVR: Benchmarking Customer Support LLM Agents for Business-Adherence , author=. arXiv preprint arXiv:2601.00596 , year=

  7. [15]

    2026 , eprint=

    CompliBench: Benchmarking LLM Judges for Compliance Violation Detection in Dialogue Systems , author=. 2026 , eprint=

  8. [16]

    From Imperative to Declarative: Towards LLM-friendly OS Interfaces for Boosted Computer-Use Agents , url=

    Wang, Yuan and Li, Mingyu and Chen, Haibo , year=. From Imperative to Declarative: Towards LLM-friendly OS Interfaces for Boosted Computer-Use Agents , url=. doi:10.1145/3767295.3803576 , booktitle=

  9. [17]

    arXiv preprint arXiv:2502.09956 , year=

    KGGen: Extracting Knowledge Graphs from Plain Text with Language Models , author=. arXiv preprint arXiv:2502.09956 , year=

  10. [18]

    The Thirteenth International Conference on Learning Representations , year=

    Scaling LLM Test-Time Compute Optimally Can Be More Effective than Scaling Model Parameters , author=. The Thirteenth International Conference on Learning Representations , year=

  11. [19]

    The Thirteenth International Conference on Learning Representations , year=

    Inference Scaling for Long-Context Retrieval Augmented Generation , author=. The Thirteenth International Conference on Learning Representations , year=

  12. [20]

    arXiv preprint arXiv:1503.02531 , year=

    Distilling the Knowledge in a Neural Network , author=. arXiv preprint arXiv:1503.02531 , year=

  13. [21]

    The Twelfth International Conference on Learning Representations , year=

    On-Policy Distillation of Language Models: Learning from Self-Generated Mistakes , author=. The Twelfth International Conference on Learning Representations , year=

  14. [22]

    2025 , howpublished=

    Qwen3.5: Towards Native Multimodal Agents , author=. 2025 , howpublished=

  15. [23]

    arXiv preprint arXiv:2603.28815 , year=

    SkillTester: Benchmarking Utility and Security of Agent Skills , author=. arXiv preprint arXiv:2603.28815 , year=

  16. [24]

    arXiv preprint arXiv:2604.24594 , year=

    Skill Retrieval Augmentation for Agentic AI , author=. arXiv preprint arXiv:2604.24594 , year=

  17. [25]

    arXiv preprint arXiv:2411.07037 , year=

    LIFBench: Evaluating the Instruction Following Performance and Stability of Large Language Models in Long-Context Scenarios , author=. arXiv preprint arXiv:2411.07037 , year=

  18. [26]

    Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics , year=

    GuideBench: Benchmarking Domain-Oriented Guideline Following for LLM Agents , author=. Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics , year=

  19. [27]

    arXiv preprint arXiv:2505.16944 , year=

    AGENTIF: Benchmarking Instruction Following of Large Language Models in Agentic Scenarios , author=. arXiv preprint arXiv:2505.16944 , year=

  20. [28]

    arXiv preprint arXiv:2310.06839 , year=

    LongLLMLingua: Accelerating and Enhancing LLMs in Long Context Scenarios via Prompt Compression , author=. arXiv preprint arXiv:2310.06839 , year=

  21. [29]

    arXiv preprint arXiv:2403.12968 , year=

    LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt Compression , author=. arXiv preprint arXiv:2403.12968 , year=

  22. [30]

    Findings of the Association for Computational Linguistics: EMNLP 2025 , year=

    Context Length Alone Hurts LLM Performance Despite Perfect Retrieval , author=. Findings of the Association for Computational Linguistics: EMNLP 2025 , year=

  23. [31]

    2026 , eprint=

    Better and Worse with Scale: How Contextual Entrainment Diverges with Model Size , author=. 2026 , eprint=

  24. [32]

    Advances in Neural Information Processing Systems , volume=

    Training Language Models to Follow Instructions with Human Feedback , author=. Advances in Neural Information Processing Systems , volume=. 2022 , doi=

  25. [33]

    arXiv preprint arXiv:2001.08361 , year=

    Scaling Laws for Neural Language Models , author=. arXiv preprint arXiv:2001.08361 , year=. doi:10.48550/arXiv.2001.08361 , url=

  26. [34]

    Advances in Neural Information Processing Systems , volume=

    An Empirical Analysis of Compute-Optimal Large Language Model Training , author=. Advances in Neural Information Processing Systems , volume=. 2022 , doi=

  27. [35]

    arXiv preprint arXiv:2510.14919 , year=

    Predicting Task Performance with Context-Aware Scaling Laws , author=. arXiv preprint arXiv:2510.14919 , year=. doi:10.48550/arXiv.2510.14919 , url=

  28. [36]

    From Local to Global: A Graph

    Edge, Darren and Trinh, Ha and Cheng, Newman and Bradley, Joshua and Chao, Alex and Mody, Apurva and Truitt, Steven and Metropolitansky, Dasha and Ness, Robert Osazuwa and Larson, Jonathan , journal=. From Local to Global: A Graph. 2024 , doi=

  29. [37]

    2024 , doi=

    Guo, Zirui and Xia, Lianghao and Yu, Yanhua and Ao, Tu and Huang, Chao , journal=. 2024 , doi=

  30. [38]

    Transactions of the Association for Computational Linguistics , volume=

    Lost in the Middle: How Language Models Use Long Contexts , author=. Transactions of the Association for Computational Linguistics , volume=. 2024 , doi=

  31. [39]

    2024 , doi=

    Bai, Yushi and Lv, Xin and Zhang, Jiajie and Lyu, Hongchang and Tang, Jiankai and Huang, Zhidian and Du, Zhengxiao and Liu, Xiao and Zeng, Aohan and Hou, Lei and Dong, Yuxiao and Tang, Jie and Li, Juanzi , booktitle=. 2024 , doi=

  32. [40]

    Retrieval-Augmented Generation for Knowledge-Intensive

    Lewis, Patrick and Perez, Ethan and Piktus, Aleksandra and Petroni, Fabio and Karpukhin, Vladimir and Goyal, Naman and K. Retrieval-Augmented Generation for Knowledge-Intensive. Advances in Neural Information Processing Systems , volume=. 2020 , url=

  33. [41]

    Advances in Neural Information Processing Systems , volume=

    Guti. Advances in Neural Information Processing Systems , volume=. 2024 , doi=

  34. [42]

    2024 , doi=

    Gu, Yuxian and Dong, Li and Wei, Furu and Huang, Minlie , booktitle=. 2024 , doi=

Pith tools

Reviewed August 12, 2026 · model on record in the stance chip above.