Skip to content

Commit

Permalink
fix black issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shankar-vision-eng committed May 29, 2024
1 parent 7b7a334 commit 561c9c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion vision_agent/agent/vision_agent_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,11 @@ def chat_with_workflow(

while not success and retries < self.max_retries:
plan_i = write_plan(
chat, TOOL_DESCRIPTIONS, format_memory(working_memory), self.planner, images=[image] if image else None
chat,
TOOL_DESCRIPTIONS,
format_memory(working_memory),
self.planner,
images=[image] if image else None,
)
plan_i_str = "\n-".join([e["instructions"] for e in plan_i])
if self.verbosity >= 1:
Expand Down

0 comments on commit 561c9c9

Please sign in to comment.