Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wuyiqunLu committed Jul 22, 2024
1 parent 487ec44 commit 1b0b382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/agent/vision_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ def chat_with_workflow(
code = cast(str, results["code"])
test = cast(str, results["test"])
working_memory.extend(results["working_memory"]) # type: ignore
plan.append({"code": code, "test": test, "plan": plan_i})
plan.append({"code": code, "test": test, "plan": best_plan})

execution_result = cast(Execution, results["test_result"])
self.log_progress(
Expand Down

0 comments on commit 1b0b382

Please sign in to comment.