mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 16:48:30 +00:00
Add type hints to EventListener class attributes
This commit is contained in:
@@ -55,12 +55,12 @@ class EventListener(BaseEventListener):
|
|||||||
execution_spans: Dict[Task, Any] = Field(default_factory=dict)
|
execution_spans: Dict[Task, Any] = Field(default_factory=dict)
|
||||||
next_chunk = 0
|
next_chunk = 0
|
||||||
text_stream = StringIO()
|
text_stream = StringIO()
|
||||||
current_crew_tree = None
|
current_crew_tree: Optional[Tree] = None
|
||||||
current_task_branch = None
|
current_task_branch: Optional[Tree] = None
|
||||||
current_agent_branch = None
|
current_agent_branch: Optional[Tree] = None
|
||||||
current_tool_branch = None
|
current_tool_branch: Optional[Tree] = None
|
||||||
current_flow_tree = None
|
current_flow_tree: Optional[Tree] = None
|
||||||
current_method_branch = None
|
current_method_branch: Optional[Tree] = None
|
||||||
tool_usage_counts: Dict[str, int] = {}
|
tool_usage_counts: Dict[str, int] = {}
|
||||||
|
|
||||||
def __new__(cls):
|
def __new__(cls):
|
||||||
|
|||||||
Reference in New Issue
Block a user