Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wuyiqunLu committed May 22, 2024
1 parent f7f715e commit a4fb89f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vision_agent/agent/vision_agent_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def retrieve_tools(
tool_desc.extend([e["desc"] for e in tools])
if verbosity == 2:
log_progress({
"log": f"Retrieved tools:",
"log": "Retrieved tools:",
"tools": tool_desc,
})
_LOGGER.info(f"Tools: {tool_desc}")
Expand Down Expand Up @@ -288,7 +288,7 @@ def chat_with_workflow(
plan_i_str = "\n-".join([e["instructions"] for e in plan_i])
if self.verbosity == 1 or self.verbosity == 2:
self.log_progress({
"log": f"Going to run the following plan(s) in sequence:\n",
"log": "Going to run the following plan(s) in sequence:\n",
"plan": plan_i,
})
_LOGGER.info(
Expand Down

0 comments on commit a4fb89f

Please sign in to comment.