mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
docs: improve LLMCallStartedEvent docstring to clarify multimodal support
Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
@@ -12,7 +12,12 @@ class LLMCallType(Enum):
|
|||||||
|
|
||||||
|
|
||||||
class LLMCallStartedEvent(CrewEvent):
|
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"
|
type: str = "llm_call_started"
|
||||||
messages: Union[str, List[Dict[str, Any]]]
|
messages: Union[str, List[Dict[str, Any]]]
|
||||||
|
|||||||
Reference in New Issue
Block a user