mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-27 01:16:22 +02:00
Fix tests (#571)
This commit is contained in:
parent
e24de6081f
commit
72cb1c98e0
2 changed files with 6 additions and 6 deletions
|
|
@ -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}")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue