From 4901d89205103f3a340f485f499152edc7f382f3 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Thu, 6 Mar 2025 14:51:47 -0500 Subject: [PATCH] More event types --- src/crewai/utilities/events/event_types.py | 10 ++++++++++ 1 file changed, 10 insertions(+) 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, ]