The robotaxi is no longer a prototype. Waymo is logging millions of paid miles. Zoox, WeRide, and a growing cohort of European operators are pushing into dense urban environments where the edge cases are not simulated anomalies but daily reality. For engineering leaders, this shift changes the nature of a question that used to be deferred: when an autonomous vehicle makes a decision that causes harm, can you reconstruct exactly why it made that decision, from raw sensor input through to actuator output? If the honest answer is no, that gap is no longer a research debt. It is a legal and commercial liability that needs an architectural response before the first incident, not after.
Companion piece to our broader work on physical AI deployment complexity. See Physical AI Deployments: Why Robots Fail Where Software Succeeds for a detailed analysis of where production robotics systems break down and why software-AI intuitions do not transfer.
The Auditability Gap in Deep Learning-Powered Physical Systems
Deep learning perception models are extraordinarily capable and structurally opaque. A transformer-based perception stack can correctly identify a partially occluded cyclist in rain at 40mph, but the internal representations that produced that classification do not naturally surface as human-readable evidence. When that same stack misclassifies something and the vehicle acts on the error, the weights that produced the output are still there, but the reasoning chain is not.
Post-hoc explainability methods like LIME or GRAD-CAM can generate feature attributions after the fact. The problem is that feature attributions are not the same as decision records. They tell you which pixels influenced a classification score; they do not tell you what the system believed about the scene, what alternatives it considered, or why it committed to a specific action trajectory at a specific moment. For incident reconstruction, that distinction is the difference between evidence and speculation.
This is the core problem that engineering leaders need to internationalise: auditability is not a property of the model. It is a property of the system architecture around the model.
What a Causal Audit Chain Actually Requires
The academic literature has begun to formalise what production teams have been discovering empirically. Temel et al. propose TRACE (Transparent Reasoning Architecture for Credible Execution), a four-layer decision framework designed to ensure every autonomous action can be linked back to sensor evidence through documented causal chains (Temel et al., arXiv 2026). The four layers are: Semantic Perception for evidence-grounded entity recognition, Belief Reasoning for probabilistic state estimation with causal graphs, Action Synthesis for constraint-aware planning with counterfactual documentation, and Execution Verification for compliance monitoring.
What makes this architecture practically relevant is that it is model-agnostic. The perception modules can still be CNNs or transformers. The auditability is enforced at the layer boundaries, not inside the models themselves. Evaluated on warehouse robot navigation across 500 simulated decision cycles, TRACE achieved 98.6% evidence traceability and 98.1% decision reconstructability (Temel et al., arXiv 2026). Those numbers are from a controlled simulation, and production environments will degrade them, but the architectural principle transfers.
The critical design commitment is that every layer must produce structured artifacts, not just outputs. A perception module that returns a bounding box and a confidence score is not sufficient. The artifact needs to record which sensors contributed, what the uncertainty distribution looked like, and what alternative interpretations were considered and discarded. Without that artifact structure, post-incident reconstruction is forensic archaeology rather than audit.
London as a Stress Test: Why Environment Complexity Changes the Calculus
The Infrastructure Problem
London's street grid was not designed for autonomous vehicles. Medieval lane widths, unmarked junctions, shared pedestrian and cycling infrastructure, and an absence of standardised road markings in older boroughs all combine to produce an environment that sits well outside the operational design domain of systems trained predominantly on US suburban and highway data. When a robotaxi operating in Southwark encounters a scenario its training distribution did not adequately cover, the system's decision is more likely to involve genuine uncertainty rather than confident classification.
That uncertainty is precisely what the audit chain must capture. A system that acts with high confidence in a low-confidence situation, and has no record of the uncertainty at decision time, creates the worst possible forensic outcome: an incident with no documented evidence that the system knew it was operating at the edge of its competence.
The Regulatory Exposure
The EU AI Act classifies autonomous vehicles as high-risk AI systems, which means transparency and traceability are compliance requirements, not design preferences. The UK is developing its own autonomous vehicle regulatory framework under the Automated Vehicles Act 2024, which places explicit obligations on authorised self-driving entities to demonstrate that their systems behaved as intended. Neither framework specifies a particular technical architecture, but both create legal exposure for operators who cannot produce a coherent sensor-to-action record when an incident is investigated.
Engineering leaders need to treat regulatory traceability as a first-class system requirement, not a documentation task that follows development. Retrofitting audit infrastructure onto a deployed system is significantly more expensive and less reliable than building it in from the start.
Building Governance Infrastructure Before the Incident
Audit Trail Architecture
The audit trail for a physical AI system has different requirements from a software audit log. Latency constraints mean you cannot log everything synchronously without affecting real-time performance. Storage constraints mean you cannot retain full sensor streams indefinitely. The architecture needs to define, in advance, exactly what gets recorded, at what fidelity, for how long, and under what conditions higher-fidelity capture is triggered.
A practical approach is tiered retention: compressed decision-layer artifacts retained permanently, full sensor streams retained for a rolling window and promoted to permanent storage when a safety-relevant event is flagged. The definition of a safety-relevant event needs to be specified in the system design, not determined retrospectively by an investigator.
Incident Response Protocols
Having audit data is necessary but not sufficient. The organisation needs defined protocols for who can access audit records, in what format, under what legal conditions, and with what chain of custody. Regulatory investigators, insurers, and opposing legal counsel will all have different access requirements. Engineering teams that have not thought through these protocols before an incident will be designing them under time pressure and legal scrutiny simultaneously.
Cross-functional preparation matters here. The engineering team owns the technical audit infrastructure. Legal and compliance own the access and disclosure protocols. Neither can do the other's job, and the handoff between them needs to be specified before it is needed.
What Engineering Leaders Should Require From Their Systems Today
The practical checklist for engineering leaders evaluating or deploying autonomous physical systems is not long, but each item requires deliberate architectural commitment.
First, every decision layer must produce structured, queryable artifacts, not just operational outputs. Second, uncertainty must be recorded at decision time, not reconstructed from model weights after the fact. Third, counterfactual documentation, what the system considered doing and why it did not, must be part of the action synthesis record. Fourth, the audit trail must be tamper-evident and have a defined retention and promotion policy. Fifth, the organisation must have a tested incident response protocol that bridges engineering audit infrastructure and legal disclosure requirements before any vehicle carries a paying passenger.
These are not aspirational design goals. They are the minimum viable governance infrastructure for operating an autonomous physical system in a regulated environment where incidents will eventually occur. The question is not whether the audit chain will be needed. The question is whether it will exist when it is.
Where Vector Labs Fits
We build production AI systems for safety-critical environments, including the model development, validation architecture, and regulatory documentation that certification requires. Our work on the AI model development and certification for cardiovascular medicine case study demonstrates how we structure AI systems to meet formal certification standards, achieving Class 2A medical device certification with prospective validation and full regulatory documentation. If you are building or evaluating autonomous physical systems and need to close the auditability gap before deployment, speak to us.
FAQs
Explainability refers to methods that help humans understand how a model produces outputs, typically through post-hoc attribution techniques like LIME or GRAD-CAM. Auditability is a stronger requirement: it means the system produces structured records at decision time that allow an investigator to reconstruct the full causal chain from sensor input to actuator output after an incident. Explainability tools can support auditability, but they do not replace the need for artifact-producing architecture at each decision layer.
Technically yes, but the cost and reliability trade-offs are significant. Retrofitting requires instrumenting decision boundaries that were not designed to produce structured artifacts, which often means architectural changes rather than simple logging additions. It also introduces the risk that the retrofit captures a different system behaviour than what was deployed, which weakens the evidentiary value of the audit trail. Building auditability into the system from the design stage is substantially more reliable and less expensive.
The EU AI Act classifies autonomous vehicles as high-risk AI systems, which means operators must maintain technical documentation, implement logging of system operation, and ensure the system can be monitored and corrected by humans. These requirements are not prescriptive about architecture, but they create clear legal exposure for operators who cannot produce coherent decision records when a regulator or investigator requests them. The practical implication is that traceability needs to be a compliance deliverable, with defined documentation standards, not an engineering preference.
Counterfactual documentation is a record of the alternative actions the system evaluated at a given decision point and the reasons those alternatives were rejected in favour of the chosen action. For example, if a vehicle braked rather than steering around an obstacle, the audit record should capture that both options were considered, what constraints ruled out the steering option, and what evidence weighted toward braking. This record is essential for incident reconstruction because it shows whether the system's reasoning process was sound even when the outcome was not.
The practical approach is tiered retention with event-triggered promotion. Compressed decision-layer artifacts, which are small and structured, can be retained indefinitely. Full sensor streams are large and should be retained for a defined rolling window, then promoted to permanent storage when a safety-relevant event is flagged by the system. The definition of a safety-relevant event must be specified in the system design and agreed with legal and compliance stakeholders before deployment, because retroactive definitions create both technical and legal complications during incident response.

