Fix tests

This commit is contained in:
Cyber MacGeddon 2025-11-28 16:36:29 +00:00
parent e24de6081f
commit a9a1da115c
2 changed files with 6 additions and 6 deletions

View file

@ -346,7 +346,7 @@ class AgentManager:
# In non-streaming mode, send complete thought
# In streaming mode, thoughts were already sent as chunks
if not streaming:
await think(act.thought)
await think(act.thought, is_final=True)
return act
else:
@ -354,7 +354,7 @@ class AgentManager:
# In non-streaming mode, send complete thought
# In streaming mode, thoughts were already sent as chunks
if not streaming:
await think(act.thought)
await think(act.thought, is_final=True)
logger.debug(f"ACTION: {act.name}")