Skip to content

Commit

Permalink
fix black errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shankar-vision-eng committed May 29, 2024
1 parent 561c9c9 commit acef813
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vision_agent/agent/agent_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ def parse_file_name(s: str) -> str:
return "".join([p for p in s.split(" ") if p.endswith(".png")])


def write_program(question: str, feedback: str, model: LLM, image: Optional[Union[str, Path]] = None) -> str:
def write_program(
question: str, feedback: str, model: LLM, image: Optional[Union[str, Path]] = None
) -> str:
prompt = PROGRAM.format(
docstring=TOOL_DOCSTRING, question=question, feedback=feedback
)
Expand Down

0 comments on commit acef813

Please sign in to comment.