mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-09-20 10:03:37 +00:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user