diff --git a/src/backend/base/langflow/services/tracing/base.py b/src/backend/base/langflow/services/tracing/base.py index c96388227..4ef640889 100644 --- a/src/backend/base/langflow/services/tracing/base.py +++ b/src/backend/base/langflow/services/tracing/base.py @@ -16,5 +16,10 @@ class BaseTracer(ABC): raise NotImplementedError @abstractmethod - def end(self, outputs: Dict[str, Any], error: str | None = None): + def end( + self, + outputs: Dict[str, Any], + error: str | None = None, + metadata: dict[str, Any] | None = None, + ): raise NotImplementedError