diff --git a/lib/crewai/src/crewai/flow/flow.py b/lib/crewai/src/crewai/flow/flow.py index 9f914d81e..07fb5c7ff 100644 --- a/lib/crewai/src/crewai/flow/flow.py +++ b/lib/crewai/src/crewai/flow/flow.py @@ -977,7 +977,6 @@ class Flow(Generic[T], metaclass=FlowMeta): future = crewai_event_bus.emit( self, FlowStartedEvent( - type="flow_started", flow_name=self.name or self.__class__.__name__, inputs=inputs, ), @@ -1005,7 +1004,6 @@ class Flow(Generic[T], metaclass=FlowMeta): future = crewai_event_bus.emit( self, FlowFinishedEvent( - type="flow_finished", flow_name=self.name or self.__class__.__name__, result=final_output, state=self._copy_and_serialize_state(),