Skip to content

Commit

Permalink
fixed type error
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 10, 2024
1 parent 45546c5 commit 86ae271
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 @@ -247,7 +247,7 @@ def __call__(
input = [{"role": "user", "content": input}]
if media is not None:
input[0]["media"] = [media]
results, _ = self.chat_and_artifacts(input, artifacts)
results, _ = self.chat_with_artifacts(input, artifacts)
return results[-1]["content"] # type: ignore

def chat(
Expand Down

0 comments on commit 86ae271

Please sign in to comment.