Tweaked still not working

This commit is contained in:
Cyber MacGeddon 2025-11-26 00:32:18 +00:00
parent 66a74abfda
commit b2806d6e65

View file

@ -237,7 +237,7 @@ class AgentManager:
# Get streaming response
response_text = await context("prompt-request").agent_react(
variables,
variables=variables,
streaming=True,
chunk_callback=on_chunk
)
@ -255,7 +255,10 @@ class AgentManager:
else:
# Non-streaming path - get complete text and parse
response_text = await context("prompt-request").agent_react(variables, streaming=False)
response_text = await context("prompt-request").agent_react(
variables=variables,
streaming=False
)
logger.debug(f"Response text:\n{response_text}")