Learn

← Track I: IAB Tech Lab Agentic (AAMP)
L4-L5

I2

ARTF: the Agentic Real-Time Framework

In this lesson you will
  • Explain the ARTF idea: run agents co-located with the host platform (via containerization) so they avoid network round-trips.
  • Contrast co-located execution with network-protocol calls: lower latency and tighter data control, at the cost of running another party code next to yours.
  • Connect this to the server-side thinking in Track E: moving work closer to where the auction runs.

Every network call costs time. When a buyer agent and a seller system have to round-trip over the open internet for each step, the delays add up, and in an auction milliseconds are money. ARTF takes a different approach: bring the agent to the inventory instead of talking to it across the network.

ARTF (Agentic Real-Time Framework) runs agents co-located with the host platform, packaged in containers that execute next to the inventory rather than calling in from outside. Removing the network hop cuts latency sharply, and keeping the work local gives tighter control over data, since signals do not have to leave the host to be used.

You have seen this instinct before. In Track E, moving the auction to Prebid Server put work closer to where it runs to cut browser cost. ARTF takes the same idea to the agent layer: run the agent where the decision happens.

Network-protocol callsARTF (co-located)
LatencyA round-trip per stepNo network hop; runs in place
DataSignals travel to the agentWork happens next to the data
CostSimple to integrateRuns another party’s code beside yours

Watch out

Co-location is a trade. You gain speed and data locality, but you are running a containerized agent from another party inside your platform, which raises isolation, security, and trust questions a network call does not. That is part of why a trusted agent registry matters.

Quick check

Why does running an agent co-located with the publisher platform cut latency, and what new concern does it introduce?

Key concepts
ARTF (Agentic Real-Time Framework)Co-located agents and containerizationEliminating network-hop latencyData privacy through locality
Going deeper

To really lock this in: explain why running a buyer agent inside the publisher platform can cut latency, and name one trust or isolation concern it raises.

Where this leads
LEARN

Builds on Track E server-side (E1): the same instinct to move work closer to the auction, taken to the agent layer.

Bidcliq Academy · I2: ARTF: the Agentic Real-Time Framework