We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d56b9ab commit 6ab7ea2Copy full SHA for 6ab7ea2
1 file changed
agents/matmaster_agent/flow_agents/agent.py
@@ -878,9 +878,10 @@ async def _run_research_flow(
878
):
879
yield _scene_event
880
881
+ execution_count = 0
882
while True:
883
if not is_job_submitted_step(ctx):
- skip_thinking = scenes_contain_query_job_status(ctx)
884
+ skip_thinking = scenes_contain_query_job_status(ctx) or execution_count
885
async for _step_make_event in self._run_step_make_agent(
886
ctx,
887
UPDATE_USER_CONTENT,
@@ -891,6 +892,7 @@ async def _run_research_flow(
891
892
893
async for _plan_execute_event in self._run_plan_execute_agent(ctx):
894
yield _plan_execute_event
895
+ execution_count += 1
896
897
# 检查是否为等待异步任务执行完成的阶段
898
0 commit comments