Fix failing test

This commit is contained in:
Brandon Hancock
2025-03-05 14:18:34 -05:00
parent 314b8da232
commit 21c42a4f14

View File

@@ -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),