docs(events): remove stale params from handle_llm_stream_chunk docstring (#7313)

The Args block for ConsoleFormatter.handle_llm_stream_chunk listed
'chunk' and 'crew_tree' parameters that no longer exist on the method.
The signature was refactored to (accumulated_text, call_type) but the
docstring was not updated. Callers in event_listener.py pass only the
two real params.

Refs #7312.
This commit is contained in:
Bright Oparaji
2026-09-07 14:40:44 +01:00
committed by GitHub
parent 1f3e6113d7
commit 1b855b4ff9

View File

@@ -589,9 +589,7 @@ To enable tracing, do any one of these:
"""Handle LLM stream chunk event - display streaming text in a panel.
Args:
chunk: The new chunk of text received.
accumulated_text: All text accumulated so far.
crew_tree: Unused (kept for API compatibility).
call_type: The type of LLM call (LLM_CALL or TOOL_CALL).
"""
if not self.verbose: