Close Menu
    Trending
    • Inside the aggressive 4,375 ETH selloff that just hit a massive collateral wall
    • Coldcard Bitcoin Thief Likely Used Top Blockchain Services Provider
    • Structured AI data pipelines score 10.9 points below free-form code — DataFlow-Harness closes the gap
    • AI firms must answer for rogue bots, says Hugging Face boss
    • Community is the key to the esports industry’s success, not winning tournaments, says Fnatic’s former CEO
    • 7.31 Friday Faves – The Fitnessista
    • Rob Key would ‘not be surprised’ if Ben Stokes returned to England Test team
    • FIA COMPLETES ‘DEAL OF THE CENTURY’ FOR FIA WORLD AND EUROPEAN RALLY CHAMPIONSHIPS
    FreshUsNews
    • Home
    • World News
    • Latest News
      • World Economy
      • Opinions
    • Politics
    • Crypto
      • Blockchain
      • Ethereum
    • US News
    • Sports
      • Sports Trends
      • eSports
      • Cricket
      • Formula 1
      • NBA
      • Football
    • More
      • Finance
      • Health
      • Mindful Wellness
      • Weight Loss
      • Tech
      • Tech Analysis
      • Tech Updates
    FreshUsNews
    Home » Structured AI data pipelines score 10.9 points below free-form code — DataFlow-Harness closes the gap
    Tech Updates

    Structured AI data pipelines score 10.9 points below free-form code — DataFlow-Harness closes the gap

    FreshUsNewsBy FreshUsNewsAugust 1, 2026No Comments9 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Should you ask an AI coding agent to jot down a standalone Python script to parse a single JSON file, it should seemingly provide you with an ideal reply in seconds. However the identical agent usually breaks in the event you ask it to construct a scientific knowledge processing pipeline, like ingesting 1000’s of messy paperwork, chunking textual content, scoring high quality, and filtering noise for a Retrieval-Augmented Technology (RAG) system that matches your particular enterprise stack.

    Whereas giant language fashions (LLMs) excel at one-off code era, their outputs for complicated data-processing duties are usually free-form, disposable scripts. These scripts are indifferent from the governable workflow abstractions that MLOps groups depend on for manufacturing, making them tough to audit or edit visually.

    To deal with this, researchers at Peking College, Zhongguancun Academy, and Shanghai’s Institute for Superior Algorithms Analysis launched DataFlow-Harness, an open-source framework that guides an LLM agent to construct structured, visible data-processing workflows step-by-step, fairly than writing uncooked code from scratch.

    The framework makes AI-generated pipelines simpler to handle and combine into current architectures as a result of the generated artifacts are persistent and simply editable.

    The researchers report that the platform achieves a 93.3% noticed end-to-end go price on a 12-task data-engineering benchmark. In comparison with customary Claude Code, it reduces API prices by as much as 72.5% and response latency by 49.9%, whereas reaching practically the identical success price as an AI given the complete codebase to jot down customary scripts. For enterprise groups, this implies getting the velocity of AI automation with out accumulating unmanageable technical debt, guaranteeing that pipelines stay safe, auditable, and prepared for manufacturing.

    The "NL2Pipeline hole"

    Knowledge-centric AI requires workflows for duties like artificial knowledge era, retrieval augmentation, and mannequin coaching. Whereas LLMs can translate pure language into executable implementations to carry out these duties, excessive activity accuracy is inadequate for manufacturing deployment.

    "The primary wall is often not writing Python," Runming He, first creator of the DataFlow-Harness paper, informed VentureBeat. "Fashionable coding brokers can usually produce a believable script shortly. The more durable downside is grounding that script in a dwell manufacturing platform: utilizing operators which can be truly put in, matching the actual dataset schema, referring to registered datasets and mannequin companies, preserving dependencies between levels, and forsaking an artifact that one other engineer can perceive and revise."

    Common-purpose AI brokers ceaselessly hallucinate dependencies, counting on unavailable operators or outdated platform assumptions. As an alternative of forsaking an artifact that one other engineer can perceive and revise, they generate disposable code that’s tough to audit by way of workflow managing instruments.

    The researchers outline this problem because the "NL2Pipeline hole": the disconnect between a consumer expressing workflow necessities in pure language and the manufacturing surroundings requiring structured and protracted pipeline property.

    The researchers demonstrated this hole of their experiments. For instance, when Claude Code was allowed to jot down customary, free-form scripts utilizing codebase context, it hit a 94.2% success price. Nevertheless, when restricted to solely utilizing the platform's particular constructing blocks to create a local workflow graph, its success price dropped to 83.3%. This hole is the paper's central discovering: native, governable pipelines are meaningfully more durable for the agent to supply than throwaway code.

    “Closing this hole requires greater than enhancing code-generation accuracy: building should stay grounded in platform semantics and produce artifacts that combine with the host platform,” the researchers write.

    How the 4 parts work collectively

    "DataFlow-Harness modifications the agent’s motion area," He stated. "As an alternative of asking the agent to emit arbitrary code, it retrieves the dwell operator registry and present pipeline state by way of MCP and applies typed, incremental modifications to a persistent DAG."

    To attain this, the platform organizes workflow synthesis round 4 parts: the Knowledge Pipeline Backend, the interplay layer (DataFlow-WebUI), the MCP Instruments Layer, and the AI steering layer (DataFlow-Abilities).

    The Knowledge Pipeline Backend acts because the authoritative supply of reality throughout conversational, visible, and programmatic interfaces. It represents the pipeline as a directed acyclic graph (DAG), a structured workflow map containing knowledge sources, configured pre-built processing modules (which the researchers seek advice from as "operators"), and execution dependencies. As an alternative of producing free-form code, brokers work together with this backend by way of “typed mutations,” like including an operator or connecting edges.

    DataFlow-Abilities are markdown recordsdata that inject domain-specific information into the mannequin's context window, guiding it on operator-selection patterns, schema inference, and meeting procedures. Fairly than letting the AI guess learn how to assemble parts, expertise present the AI with compatibility guidelines, educating it learn how to accurately match totally different knowledge codecs and deal with complicated knowledge constructions with out breaking the pipeline. 

    The MCP Instruments Layer provides the AI entry to the operator registry and present state of the info workflow. The AI proposes structured modifications by way of the instruments layer. The system validates the modifications to make sure the workflow runs in a sound sequence and that each related module speaks the identical knowledge language.

    DataFlow-WebUI gives two interfaces that permit people and AI to construct the workflow collectively. Builders can describe workflow necessities in pure language by way of a conversational interface. They will additionally entry the workflow as a graphical map in a visible DAG editor. Right here, they will instantly examine the modifications proposed by the AI and make modifications.

    “The present implementation performs static checks towards platform metadata earlier than accepting pipeline modifications,” He stated. “These embrace checks for registered datasets, operators and model-serving references, subject circulate, and a few invalid parameter utilization, in addition to structural validity. The result’s seen in a graphical editor and may be revised both manually or by the agent in later turns.”

    The outcomes: 93.3% go price, 72.5% decrease price

    The researchers examined DataFlow-Harness on a benchmark of 12 duties throughout six industrial data-processing eventualities, resembling QA era, evaluate governance, and schema normalization. They used Claude Opus 4.7 because the spine mannequin of their experiments.

    They in contrast DataFlow-Harness towards three baselines:

    • Vanilla CC: An unconstrained coding baseline utilizing customary Claude Code.

    • Context-Conscious CC: An agent that has entry to the DataFlow codebase in its context window.

    • MCP-only: An agent that has entry to the DataFlow MCP instruments and is instructed to generate platform-native DAGs (with out entry to DataFlow-Abilities).

    DataFlow-Harness achieved a 93.3% end-to-end go price, enhancing by 10.0 share factors over MCP-only and beating Vanilla CC (91.7%), whereas being inside 0.9 share factors of Context-Conscious CC (94.2%).

    Importantly, it decreased API prices to $0.261 per activity, a 72.5% drop in comparison with Vanilla CC and 42.8% in comparison with Context-Conscious CC. In producing workflows, it was 49.9% quicker than Vanilla CC and 17.6% quicker than Context-Conscious CC.

    DataFlow-Harness proved notably efficient on complicated duties that rely upon implicit area information, like QA era. The baseline MCP-only strategy ceaselessly generated structurally legitimate DAGs however struggled to deduce task-specific procedures from operator descriptions alone.

    To indicate how this works in the actual world, the researchers detailed a textbook-to-VQA extraction activity. This job required the AI to sew collectively capabilities resembling PDF parsing, structure restoration, OCR, determine extraction, multimodal understanding, and long-range question-answer matching. DataFlow-Harness achieved 97.2% precision and an 87.3% protection price, simply beating the baselines. By having the AI snap collectively current platform property fairly than coding complicated duties from scratch, it recovered extra legitimate QA pairs from the doc.

    Their experiments additionally confirmed that DataFlow-Harness is extremely efficient at creating knowledge era pipelines. For instance, in an artificial instruction-data era activity, the agent constructed a multi-stage pipeline that generated candidate instruction–response pairs, critiqued and rewrote them, scored them with an LLM-based decide, and filtered low-quality outputs earlier than coaching.

    "Such workflows are pricey to construct and fragile to take care of as collections of advert hoc scripts," He stated. "The harness doesn’t make them robotically secure, however it turns them into express, editable levels that engineers can examine, check, and govern utilizing regular manufacturing controls."

    Equally, when tasked with constructing a math knowledge cleaning-and-synthesis pipeline, the info produced by the DataFlow-Harness pipeline skilled a better-performing mannequin with greater common accuracy on AIME24 and AIME25 benchmarks than the info produced by the vanilla Claude Code pipeline.

    Tech stack match and implementation tradeoffs

    For engineering groups evaluating DataFlow-Harness, you will need to perceive the way it suits into current infrastructure. Launched beneath the Apache 2.0 license, the present implementation requires a little bit of engineering to suit into fashionable tech stacks.

    "The present implementation is native to the DataFlow platform; it’s not a turnkey Airflow, Prefect, or Spark plug-in," He stated. To make use of these methods as an execution spine, groups should construct an adapter to attach their group’s registry, metadata, and execution interfaces to the agent's management layer.

    Moreover, organizations should put money into the boundaries they need the AI to respect. This requires sustaining an operator registry, defining schemas, and encoding recurring area procedures as Abilities. Due to this overhead, He recommends towards utilizing the framework for small, one-off transformations the place a easy script suffices, or in legacy environments that can’t expose dependable metadata.

    Lastly, whereas the platform prevents illogical connections by validating structural properties, it’s an engineering management layer, not a compliance substitute. "The harness ought to nonetheless be handled as an engineering management layer, not as an alternative choice to compliance coverage, validated detection fashions, entry controls, audit logging, or human approval," He stated.

    The platform is open-source, and builders can entry the supply code and codebase documentation instantly by way of the mission's GitHub repository.

    As protocols like MCP develop into standardized, the boundary between human engineers and AI brokers will shift. "The objective is just not autonomous knowledge engineering with out oversight," He stated. "It’s a higher division of labor: brokers carry out repetitive building inside express boundaries, whereas engineers stay chargeable for the semantics, insurance policies, and consequential choices that require area accountability."



    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleAI firms must answer for rogue bots, says Hugging Face boss
    Next Article Coldcard Bitcoin Thief Likely Used Top Blockchain Services Provider
    FreshUsNews
    • Website

    Related Posts

    Tech Updates

    Thinking Machines debuts Inkling Small open source AI model nearing performance of predecessor at about 1/4 size

    July 31, 2026
    Tech Updates

    Not just OpenAI: Now Anthropic says its internal models got online and cyberattacked 3 other organizations

    July 31, 2026
    Tech Updates

    The lineage behind 69% of open models was never verified. Cisco just fingerprinted almost 900 for free

    July 30, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    Latter-day Saints church member raises more than $300,000 for family of gunman in deadly Michigan chapel attack

    October 3, 2025

    The Last Moments of Jeju Air Flight 2216

    May 1, 2026

    Low-Cost Solid State Lidar Aims for ADAS Integration

    February 14, 2026

    Ethereum Price Looks Bullish, But Only On The Inverted Chart

    February 21, 2026

    Carrick and Fernandes fume at penalty call after Manchester United drop points

    March 21, 2026
    Categories
    • Bitcoin News
    • Blockchain
    • Cricket
    • eSports
    • Ethereum
    • Finance
    • Football
    • Formula 1
    • Healthy Habits
    • Latest News
    • Mindful Wellness
    • NBA
    • Opinions
    • Politics
    • Sports
    • Sports Trends
    • Tech Analysis
    • Tech News
    • Tech Updates
    • US News
    • Weight Loss
    • World Economy
    • World News
    Most Popular

    Inside the aggressive 4,375 ETH selloff that just hit a massive collateral wall

    August 1, 2026

    Coldcard Bitcoin Thief Likely Used Top Blockchain Services Provider

    August 1, 2026

    Structured AI data pipelines score 10.9 points below free-form code — DataFlow-Harness closes the gap

    August 1, 2026

    AI firms must answer for rogue bots, says Hugging Face boss

    August 1, 2026

    Community is the key to the esports industry’s success, not winning tournaments, says Fnatic’s former CEO

    August 1, 2026

    7.31 Friday Faves – The Fitnessista

    August 1, 2026

    Rob Key would ‘not be surprised’ if Ben Stokes returned to England Test team

    August 1, 2026
    Our Picks

    F1 – 2025 Abu Dhabi Grand Prix Post-Race Press Conference Transcript

    December 21, 2025

    Senate Republicans Make ‘Closing Offer’ On Crypto Bill

    January 7, 2026

    2027 NFL Draft Odds: Arch Manning Favored to Go No. 1

    April 27, 2026

    Martin O’Neill urges Celtic fans to remain patient with struggling Wilfried Nancy

    December 15, 2025

    2025 World Series Schedule: Blue Jays vs. Dodgers Dates, Times

    November 1, 2025

    The Power of 60+ Self-Care Quotes: Empowering Your Well-being

    July 22, 2025

    Can you lose weight in a calorie deficit?

    October 6, 2025
    Categories
    • Bitcoin News
    • Blockchain
    • Cricket
    • eSports
    • Ethereum
    • Finance
    • Football
    • Formula 1
    • Healthy Habits
    • Latest News
    • Mindful Wellness
    • NBA
    • Opinions
    • Politics
    • Sports
    • Sports Trends
    • Tech Analysis
    • Tech News
    • Tech Updates
    • US News
    • Weight Loss
    • World Economy
    • World News
    • Privacy Policy
    • Disclaimer
    • Terms and Conditions
    • About us
    • Contact us
    Copyright © 2025 Freshusnews.com All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.