Skip to content

Commit

Permalink
don't test multi plan on edit code
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Jul 23, 2024
1 parent 3fa91ee commit c5057e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_agent/tools/meta_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def detect_dogs(image_path: str):
fixed_chat_history.append({"role": "user", "content": chat})

try:
response = agent.chat_with_workflow(fixed_chat_history)
response = agent.chat_with_workflow(fixed_chat_history, test_multi_plan=False)
code = response["code"]
with open(code_file, "w") as f:
f.write(code)
Expand Down

0 comments on commit c5057e9

Please sign in to comment.