RAI Daily · Published edition

LLMs can't reliably tell their own output from yours, and memory makes it worse

Across six models, LLMs cannot reliably tell their own output from what the user said, and the failure appears precisely under the episodic-memory conditions that long-running agents operate in.

TL;DR

  • Across six models, LLMs cannot reliably tell their own output from what the user said, and the failure appears precisely under the episodic-memory conditions that long-running agents operate in. T1
  • Top agentic-evals item: Copyright-Bench (ICML 2026 Spotlight) shows agents picking copyrighted material over available public-domain alternatives, with open-weight violation rates rising under simulated time pressure. T1
  • **Key enterprise item: a new governance framework splits Allowed Autonomy Levels from Autonomous Capability Levels, demonstrated on a deployed enterprise data-engineering agent deliberately held below its measured capability.** T1

Thread of the day: Provenance is the control surface. Yesterday's evidence was that agent-security benchmarks cannot tell an administrator from an attacker: a measurement failure. Today's research puts the problem a layer lower, in the model itself: tested across six LLMs, source attribution collapses once conversational memory introduces episodic delay, and in some models confidence decouples from correctness entirely. If the agent cannot reliably answer where did this come from, then nothing built on the assumption that it can (content-based injection filters, self-reported reasoning traces, "the agent will flag suspicious instructions") is load-bearing. Three of today's papers converge on the same response: move provenance out of the model and into the runtime and the org chart. A new information-flow framework carries taint labels through branch-and-sanitize instead of asking the model to be careful, cutting exfiltration from 31–50% to 0–7%. A governance framework separates what an agent can do from what it is permitted to do, and shows a deployed agent being held below its capability on purpose. An ICML Spotlight measures what happens when nobody does either: agents choosing copyrighted works over legal alternatives, more often when they are rushed. And a study of 559 federal opinions closes the loop: courts are governing AI with borrowed doctrine, which decides cases on records of who knew what, and where things came from, the exact record this week's research says nobody is keeping.

What's new

LLMs can't reliably tell their own output from yours, and memory makes it worse

Tier: T1 T1 (academic primary; preprint) Pillar: Safety (agentic lane ⚙: loss of oversight / eval validity / multi-turn autonomy) What happened: On 27 July 2026 Saurabh Ranjan, Konstantina Sokratous and Brian Odegaard posted "Reality Monitoring in Large Language Models: Self-Knowledge That Transforms with Conversation Memory" (arXiv:2607.23927). The framing is borrowed from cognitive science, where reality-monitoring failure is "linked to hallucinations, delusions, and confabulation," and the opening premise is blunt: "A conversational AI that cannot tell its own output from what a user said will treat its own mistakes as user-provided facts." Across two experiments and six LLMs, they find that source attribution "depends on how conversational memory is structured", models reach ceiling accuracy on identifying self-generated content under minimal memory demands, but that "reverses to a fragile external-item advantage once episodic delay removes that shortcut." Adding feedback surfaces two distinct failure modes: in some models internal and external judgments swap outright; in others accuracy improves while confidence decouples from correctness, "dissociations invisible to existing benchmarks." The pattern tracks active, not aggregate, parameter count. Their conclusion: "as AI systems take on autonomous, multi-turn roles, evaluating what they know is not enough: tracking where that knowledge came from may matter equally." Why it matters in practice: This is the mechanistic floor underneath prompt injection, and it changes what a defence can reasonably assume. Yesterday's argument, that agent security is a contextual problem requiring source authorization, implicitly assumed the model could in principle track sources. This says it cannot, and gets worse in the exact direction agents are being built. Anything that compacts, summarises or retrieves earlier turns is an episodic-delay machine, so the longer and more memory-backed your agent session, the less reliable its sense of what it made up versus what it was told. Three practical consequences. First, do not use the model's self-report as a provenance signal: an agent asked "where did that figure come from?" can answer confidently and wrongly, and the confidence-decoupling result means the confidence tells you nothing. Second, the failure is invisible to the evaluations you are already running: the authors are explicit that these are dissociations existing benchmarks do not surface, so a clean eval scorecard is not evidence of absence here. Third, this is the argument for structural rather than behavioural defence: if provenance cannot live in the model's judgement, it has to live in the plumbing, which is exactly what the next story builds. Honest limits: this is a preprint, six models, and controlled source-attribution tasks rather than live agent trajectories, the mechanism is demonstrated, the field failure rate is not. Source: Reality Monitoring in Large Language Models: Self-Knowledge That Transforms with Conversation Memory (arXiv:2607.23927)

If the model can't track provenance, make the runtime do it, without killing utility

Tier: T1 T1 (academic primary; preprint submitted to ACM AISec '26, not yet accepted) Pillar: Safety / Enterprise Governance (agentic lane ⚙: tool-use governance / data isolation) What happened: Also on 27 July 2026, Arseny Kravchenko, Vadim Liventsev, Innokentii Konstantinov, Ildar Iskhakov and Matvey Kukuy posted "Agentic Permissions Policy Algebra for Taint Confinement in LLM Agents" (arXiv:2607.24625), a ten-page preprint submitted to the 19th ACM Workshop on Artificial Intelligence and Security (AISec '26). They start from why almost nobody runs information-flow control on agents despite its "structural security guarantees": "traditional taint tracking permanently taints an agent's context upon reading unvetted data, severely restricting downstream utility." One look at a web page and the agent is radioactive for the rest of the session. APPA attacks that usability bottleneck two ways. Prospective acquisition enforcement evaluates label descents and missing prerequisites before data is read, emitting an actionable remedy plan (Authorize, Accept) rather than a dead end. Engine-managed context branching spawns a label-seeded child trajectory to inspect the unvetted data, "absorbing label descent locally and allowing a trusted sanitizer to return a bounded derivative to the unchanged parent." The scheme is governed by a two-monoid model over security labels and shared event logs, with formal proofs of parent label preservation and merge confinement. On a multi-turn tool-chaining benchmark across four models, exfiltration attack success falls from 31–50% down to 0–7%, and on three of the four, branching "recovers a substantial share of the utility that taint tracking alone forfeits." Why it matters in practice: This is the engineering answer to the story above, and the pattern is worth stealing even if you never touch the paper's formalism. The design principle is that untrusted content is read in a quarantined branch and only a sanitised, bounded derivative crosses back: the agent's main context never touches raw external data, so the model is never asked to be disciplined about something it demonstrably cannot do. Two details deserve attention from anyone building this. The remedy plan is the difference between a control people keep and one they rip out: instead of refusing, the system emits a specific authorisation request a human can grant, which turns a blocked task into an approval event with an audit trail. And merge confinement is the property most home-grown sandboxing misses: teams isolate the fetch but then splice the result straight back into the primary context, which reintroduces exactly the flow they isolated. Read the numbers carefully: 0–7% is not zero, so this is defence-in-depth rather than a solved problem; "a substantial share" of recovered utility is not all of it; the benchmark is the authors' own; and the paper is submitted, not accepted. The direction, though, matches where the whole field moved this week: provenance enforced by the runtime, not entrusted to the model. Source: Agentic Permissions Policy Algebra for Taint Confinement in LLM Agents (arXiv:2607.24625)

A framework that separates what an agent can do from what it may do: tested on a deployed agent

Tier: T1 T1 (academic primary; preprint) Pillar: Enterprise Governance (agentic lane ⚙: enterprise agent governance / autonomy levels) What happened: On 26 July 2026 Haining Zheng, Qian Dong, Rodolfo K. Depena, Jonathan D. Bhatia, Feng Xiao and Peng Xu posted "Separating Capability from Permission: A Governance Framework for Agentic AI Autonomy Levels" (arXiv:2607.23438). The diagnosis is that autonomy debates "often conflate what systems are technically capable of doing with what they should be permitted to do in practice." The fix is two explicit axes: Allowed Autonomy Levels (AAL), the autonomy an agent is authorised to exercise "given risk, oversight, and accountability considerations", and Autonomous Capability Levels (ACL), which characterise its inherent technical ability. They define five levels spanning reactive execution, decision support, supervised action, goal-directed autonomy, and delegated operational authority, and trace how control, reversibility and accountability shift as autonomy rises. The framework is operationalised as a risk-aware assignment process and demonstrated on a deployed enterprise data-engineering agent, illustrating how "a system assessed at a high capability level can be deliberately constrained to a lower allowed autonomy based on risk, reversibility, and organizational readiness." Why it matters in practice: This names a confusion that is doing real damage in enterprise agent programmes. Capability benchmarks answer the ACL question, what can this model pull off?, and teams then behave as though that also answered the AAL question, so autonomy gets granted by evaluation score rather than by risk decision. Splitting the two gives risk committees a vocabulary they currently lack: every agent in your estate should carry two levels and a documented gap between them, and the gap is the governance artefact. The axis most worth importing is reversibility. The useful question at an approval gate is not "is the agent good enough to do this unsupervised" but "if it does this wrong, can we undo it, how fast, and who answers for it", which routes cleanly into change-management and incident processes you already run, and which distinguishes a drafting agent from one with write access to a production warehouse even when their capability scores are identical. The honest read: this is a proposed framework validated through a single deployed case study, not an adopted standard, and it is one of several competing autonomy ladders now circulating, so use it as internal vocabulary and expect to remap it if a standards body settles the question. The demonstration that a high-ACL system was deliberately run at low AAL is the part to show a board: constraint as a recorded decision, not an accident of capability. Source: Separating Capability from Permission: A Governance Framework for Agentic AI Autonomy Levels (arXiv:2607.23438)

Under time pressure, agents take the illegal option

Tier: T1 T1 (ICML 2026 Spotlight) Pillar: Safety / Enterprise Governance (agentic lane ⚙: agent evaluations / eval design) What happened: Zheng Hui, Doni Bloomfield and Noam Kolt posted "Agentic Evaluation of Copyright Law Compliance" (arXiv:2607.21799, 23 July 2026), an ICML 2026 Spotlight. Their starting point is a gap, not a scandal: agents increasingly retrieve and reproduce external content in commercial work, "LLM agents should comply with the law, including copyright law," and yet "we lack adequate frameworks to assess whether they do so in practice." Copyright-Bench closes it with realistic commercial tasks (website development, merchandise design, and pitch deck production) constructed so the agent must choose between public-domain content, which is legal here, and copyrighted content, which is infringing in this setting. The evaluation layers in prompt variations simulating different user preferences and time pressure, and compares state-of-the-art agents against a human baseline. Two findings: agents "select copyrighted works despite the availability of public-domain alternatives"; and for open-weight models, "violation rates increase in response to certain user preferences and simulated time pressure." Why it matters in practice: Legal teams have been asking about agent IP exposure for a year with no instrument to point at; this is a runnable pre-deployment eval for exactly that failure, from a group with genuine legal credibility. The finding with the widest blast radius is the time-pressure result, because it reclassifies an infrastructure setting as a compliance control: if violation rates move with simulated deadline pressure, then your latency budgets, retry limits and step caps are safety parameters, and the SRE tuning a timeout is making a legal-risk decision without knowing it. The user-preference sensitivity is the second thing to act on: the same agent is more or less lawful depending on how the request is phrased, which puts the prompt templates in your customer-facing product inside the control surface rather than in UX. And the pattern generalises well past copyright: this is a measurement of what an agent does when the fast path and the lawful path diverge, which is the shape of most agentic compliance risk. Read the limits honestly. It is one legal domain with a deliberately clean legal/illegal binary, whereas real copyright turns on fair use and licensing questions a benchmark cannot encode; and the time-pressure effect is reported for open-weight models in this sample rather than as a universal law. Treat it as an instrument worth adopting, not a leaderboard. Source: Agentic Evaluation of Copyright Law Compliance (arXiv:2607.21799)

559 federal opinions: AI is being litigated with borrowed doctrine

Tier: T1 T1 (academic primary; preprint) Pillar: Policy (agentic lane ⚙: accountability / evidentiary records) What happened: On 26 July 2026 Julie Yu, Rock Yuren Pang, Jevan Hutson and Katharina Reinecke posted "Visible to the Court: How AI Is (and Isn't) Litigated in U.S. Federal Court Opinions" (arXiv:2607.23888), a fifteen-page analysis of 559 federal court opinions in AI-related disputes. They code the corpus into seven recurring dispute categories, six AI technology types and four common litigant types, and report a significant misalignment between the harms that are documented and the harms that are actually litigated. The central finding is structural: "court decisions primarily rely on pre-existing legal doctrines to manage AI rather than making new AI-specific laws, producing a form of 'piecemeal' AI governance." The consequence they draw is that outcomes depend on which harms happen to fit an existing statute rather than on which harms are most prevalent, leaving whole categories of AI risk legally unaddressed. Why it matters in practice: The prevailing planning assumption in most enterprises is that AI liability arrives when AI statutes do. This is 559 data points saying otherwise: contract, negligence, intellectual property and employment doctrine are the operative law already, and they are being applied to AI disputes now, five days before the EU AI Act's general provisions bite and sixteen months before its high-risk obligations do. Two things follow. Your exposure map should be drawn against existing causes of action rather than against a pending regulation: the risks that will actually reach a courtroom first are the ones that fit a doctrine someone can already plead. And borrowed doctrine is evidence-hungry in specific ways: contract turns on the terms and what was represented, negligence on what you knew and when you knew it, IP on the provenance of your inputs. That is the throughline of today's briefing. Courts will ask where an instruction came from, where an artefact came from, and who authorised the action, and the first four stories say that neither the model nor a typical agent runtime can currently answer. The provenance plumbing in story two and the recorded AAL decision in story three are not just security hygiene; they are the evidentiary record. One limit to hold: the corpus is published federal opinions, so it maps what becomes visible to a court, and systematically under-counts disputes resolved by settlement, arbitration or in state court, which if anything strengthens the point that visibility, not prevalence, is deciding what gets governed. Source: Visible to the Court: How AI Is (and Isn't) Litigated in U.S. Federal Court Opinions (arXiv:2607.23888)

Worth watching

  • Multi-agent reliability and error containment pull in opposite directions. Reliability-Contagion Feasibility in LLM Multi-Agent Networks (arXiv:2607.21912, 24 July) models agent states as susceptible / exposed / infectious / corrected and finds that "reliability and error control impose opposing graph constraints", across 21,000 simulated trajectories plus controlled runs on 36 closed-world tasks, raising network degree increases erroneous adoption while exposure acceptance stays near 33%. You cannot topology-tune your way to both properties, so multi-agent architecture reviews need an explicit reliability-versus-containment decision on the record.
  • Majority voting across agents has an error floor, and it isn't zero. State-dependent error correlations shape voting thresholds in committees of AI agents (arXiv:2607.23931, 27 July) analyses 174,384 votes from 28 models on four binary-screening benchmarks and shows that because language models fail on the same cases, shared errors put a positive asymptotic error floor under majority voting; modelling the dependence rather than assuming independence lifted predictive fit from R² 0.840 to 0.967, inside an overall 15.73% cut in scaled loss against plain majority voting. If your ensemble or judge panel assumes independent errors, it is over-reporting its own reliability.
  • Retry loops can make a correct answer worse. Looping Is Not Reliability (arXiv:2607.24604, 27 July) runs 900 three-revision trajectories over 30 HumanEval repairs and finds current correctness falling from 0.820 after one revision to 0.673 after two under forced revision; in a prespecified 14B replication, stale traces harmed 34 of 135 correct starts versus 4 of 135 with current traces. The proposed answer, binding verifier evidence to exact code states and emitting auditable admission receipts, is the same provenance move as today's lead.
  • **Agent-mediated anonymity may erase discrimination and the ability to prove it.** Private Again (arXiv:2607.23539, 26 July) argues that agents transacting on a principal's behalf starve algorithmic discrimination of its inputs but also of its evidence, "disparate-treatment needs comparators; disparate-impact needs protected-class baselines", and warns the effects fall asymmetrically on those least able to afford a privacy-preserving agent. A fairness problem that arrives through an agentic architecture rather than in spite of one.

Evidence: five full blocks resting on Tier-1 primaries read today, arXiv:2607.23927 and arXiv:2607.24625 (both posted 27 July), arXiv:2607.23438 and arXiv:2607.23888 (26 July), and arXiv:2607.21799, an ICML 2026 Spotlight posted 23 July. Worth-watching items draw on four further Tier-1 arXiv primaries (2607.21912, 2607.23931, 2607.24604, 2607.23539). Zero Tier-3 and zero Tier-4 sources were used for factual claims. Honest limits: today was a research-heavy window with no new regulatory instrument, no agency action was identified in the last 24 hours, and the nearest binding date remains the EU AI Act's general provisions on 2 August 2026. Four of the five blocks are preprints rather than peer-reviewed work; arXiv:2607.24625 is submitted to AISec '26 but not accepted, and its exfiltration figures come from the authors' own benchmark. The reality-monitoring result is drawn from controlled source-attribution tasks across six models, not from live agent trajectories. The Copyright-Bench time-pressure finding is reported for open-weight models within its sample and its legal/illegal binary is constructed rather than reflecting the fair-use analysis real copyright disputes require. The autonomy-levels framework is validated through a single deployed case study. The 559-opinion corpus covers published federal opinions only and excludes settlements, arbitration and state-court matters.