diff --git a/src/agents/tracing/processors.py b/src/agents/tracing/processors.py index 282bc23c..308adf2a 100644 --- a/src/agents/tracing/processors.py +++ b/src/agents/tracing/processors.py @@ -78,9 +78,6 @@ def export(self, items: list[Trace | Span[Any]]) -> None: logger.warning("OPENAI_API_KEY is not set, skipping trace export") return - traces: list[dict[str, Any]] = [] - spans: list[dict[str, Any]] = [] - data = [item.export() for item in items if item.export()] payload = {"data": data} @@ -100,7 +97,7 @@ def export(self, items: list[Trace | Span[Any]]) -> None: # If the response is successful, break out of the loop if response.status_code < 300: - logger.debug(f"Exported {len(traces)} traces, {len(spans)} spans") + logger.debug(f"Exported {len(items)} items") return # If the response is a client error (4xx), we wont retry