Urgent.News

600+ sources. One page. See who else covered it.

Editions

Tech

Why We Parse Industrial Code Instead of Embedding It

Most of the industrial AI you have seen is a retrieval pipeline with a chat box on it. Chunk the manuals, embed them, stuff the top matches into a context window, let the model talk. It demos well. It falls apart the first time somebody asks a question where the answer depends on what a machine is doing right now. We are an applied research lab called Nodeblue, and the system we build is called…

Most industrial AI applications consist of a retrieval pipeline with a chat interface. The manuals are chunked, embedded, and placed into a context window; the top matches are then presented to the language model. While this approach demonstrates well, it breaks down when the question's answer relies on the current state of the machine.

Nodeblue, an applied research lab, developed the Nexus system, which focuses on a different architectural decision: the language model is merely the smallest and least interesting component. The core issue was revealed through a test that compared eleven frontier models against a live production controller with a live edit present in the processor but absent from the archive.

All eleven models confidently provided incorrect answers, relying solely on the archived version they had never seen before. When the same models were used on the Nexus engine, they accurately cited the correct rung. The models did not enhance their performance; they simply had access to a fact residing in the processor rather than a corpus.

Parsing industrial control programs has four layers: deterministic parsing of ladder logic, structured text, AOIs, UDTs, tag databases, and device configurations into a resolved model. Every claim made by the model includes the corresponding rung, tag, or document, enabling professionals to verify the output. The system processes real exports from live floors, including files too large for chat interfaces, and employs OPC UA reads and subscriptions to access the running controller.

This layer, involving physical, on-premise, and safety-gated work, is challenging for AI but necessary. Benchmarks conducted by independent controls engineers with no affiliation to the project yielded zero errors, confirming the model's accuracy. The Nexus engine's connectors are publicly available under the MIT license at github.com/Nodeblue-AI.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

What I Learned Stealing Ideas from Matt Pocock’s `.agents` Directory

What I Learned Stealing Ideas from Matt Pocock’s .agents Directory If you’ve spent more than ten minutes on TypeScript Twitter, you know Matt Pocock.

  • Matt Pocock's .agents directory teaches importance of context and guardrails for AI agents
  • Explicit "do not" lists prevent unwanted changes and break team conventions
  • Repository structure includes role definitions, explicit rules, and context injection patterns

Robots That Walk and Talk Are Coming To Car Factories

An anonymous reader quotes a report from The New York Times: At a BMW factory in South Carolina, a human-shaped robot with a screen for a face recently stepped from a charging station toward a stack…

  • BMW unveils humanoid robot at Spartanburg factory
  • Robot demonstrates sluggish, human-like movements
  • Humanoid robots aim to revolutionize U.S. manufacturing

Stop Wasting Free Model Calls on Trivial Diffs: A Three-Tier Escalation Ladder

A merge request changes one README line. The pipeline still calls a model. It costs tokens. It adds latency. It tells you almost nothing. Sound familiar?

  • Implement three-tier escalation ladder to decide model calls
  • Tier 0 for trivial diffs (≤50 lines, docs/config files) with lint checks only
  • Tier 1 for changes up to 400 lines in code/test files, no sensitive paths

Container Image Signing & SLSA Provenance Verification with Sigstore Cosign

Container Image Signing & SLSA Provenance Verification with Sigstore Cosign Supply chain security guide on signing OCI container images keylessly and verifying SLSA build provenance using Sigstore…

  • Sigstore Cosign signs container images in CI/CD pipelines without managing private keys.
  • Cosign records signed images in public Rekor transparency log for immutable provenance verification.
  • Kyverno policies enforce use of signed images in Kubernetes clusters for supply chain security.

More from Saturday 15 August →