Allocator Types

AI Systems Robotic Controllers Grid Dispatchers Hyperscale Datacenters Edge Compute Industrial Automation Autonomous Vehicles

Selection Logic

for endpoint in registry:
    gradient = fetch(endpoint + "/egs/v1/gradient")

    if gradient is None: continue
    if gradient.marginal_capacity_kw <= 0: continue

    candidates.append(gradient)

selected = min(candidates, key=lambda g: g.instantaneous_cost_index)
allocate(selected)

Effect

  • Allocators select from indexed gradients
  • Non-indexed actors are not selectable
  • Selection routes flows
  • Flows settle ECU