docs: improve LLMCallStartedEvent docstring to clarify multimodal support

Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
Devin AI
2025-03-26 12:14:13 +00:00
committed by lucasgomide
parent 49b8cc95ae
commit e3dde17af0

View File

@@ -12,7 +12,12 @@ class LLMCallType(Enum):
class LLMCallStartedEvent(CrewEvent):
"""Event emitted when a LLM call starts"""
"""Event emitted when a LLM call starts
Attributes:
messages: Content can be either a string or a list of dictionaries that support
multimodal content (text, images, etc.)
"""
type: str = "llm_call_started"
messages: Union[str, List[Dict[str, Any]]]