Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
moutasemalakkad committed Jul 18, 2024
1 parent 7cc15f4 commit 6f3e95b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vision_agent/lmm/lmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ def generate(

class ClaudeSonnetLMM(LMM):
r"""An LMM class for Anthropic's Claude Sonnet model."""

def __init__(
self,
api_key: Optional[str] = None,
Expand Down Expand Up @@ -464,4 +465,4 @@ def generate(
messages=[{"role": "user", "content": content}],
**self.kwargs,
)
return cast(str, response.content[0].text)
return cast(str, response.content[0].text)

0 comments on commit 6f3e95b

Please sign in to comment.