diff --git a/src/crewai/llm.py b/src/crewai/llm.py index b2f629e2a..e15ea61ea 100644 --- a/src/crewai/llm.py +++ b/src/crewai/llm.py @@ -343,6 +343,10 @@ class LLM: chunk_content = delta if chunk_content: + # Add the chunk content to the full response + full_response += chunk_content + + # Emit the chunk event crewai_event_bus.emit( self, event=LLMStreamChunkEvent(chunk=chunk_content),