Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt

Use this file to discover all available pages before exploring further.

GalileoAgentControlBridge

Bridge Agent Control telemetry into the active Galileo logger hierarchy. Bridge rules:
  • Events are converted only when the logger has an active trace parent.
  • Events are converted only when their trace_id and span_id match the current Galileo trace/span context advertised through the public provider.
  • Events that fail validation or do not match the active context are dropped safely rather than attached to the wrong logger hierarchy.

register

def register(self) -> GalileoAgentControlBridge
Register this bridge and install the shared Galileo trace-context dispatcher.

unregister

def unregister(self) -> None
Unregister this bridge and restore the previous provider only if Galileo still owns the slot.

write_events

def write_events(self, events: Any) -> Any
Convert Agent Control events into Galileo control spans.

setup_agent_control_bridge

def setup_agent_control_bridge(galileo_logger: GalileoLogger,
Create and register an Agent Control bridge for a Galileo logger.