diff --git a/src/crewai/utilities/events/event_types.py b/src/crewai/utilities/events/event_types.py index 81caf17f4..2ea514f37 100644 --- a/src/crewai/utilities/events/event_types.py +++ b/src/crewai/utilities/events/event_types.py @@ -23,6 +23,12 @@ from .flow_events import ( MethodExecutionFinishedEvent, MethodExecutionStartedEvent, ) +from .llm_events import ( + LLMCallCompletedEvent, + LLMCallFailedEvent, + LLMCallStartedEvent, + LLMStreamChunkEvent, +) from .task_events import ( TaskCompletedEvent, TaskFailedEvent, @@ -58,4 +64,8 @@ EventTypes = Union[ ToolUsageFinishedEvent, ToolUsageErrorEvent, ToolUsageStartedEvent, + LLMCallStartedEvent, + LLMCallCompletedEvent, + LLMCallFailedEvent, + LLMStreamChunkEvent, ]