Skip to content

Commit

Permalink
anthropic: sdk bump (#28820)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Dec 19, 2024
1 parent 907f36a commit f1d7837
Show file tree
Hide file tree
Showing 4 changed files with 335 additions and 279 deletions.
4 changes: 2 additions & 2 deletions libs/partners/anthropic/langchain_anthropic/chat_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,8 +541,8 @@ class Joke(BaseModel):
populate_by_name=True,
)

_client: anthropic.Client = PrivateAttr(default=None)
_async_client: anthropic.AsyncClient = PrivateAttr(default=None)
_client: anthropic.Client = PrivateAttr(default=None) # type: ignore[assignment]
_async_client: anthropic.AsyncClient = PrivateAttr(default=None) # type: ignore[assignment]

model: str = Field(alias="model_name")
"""Model name to use."""
Expand Down
Loading

0 comments on commit f1d7837

Please sign in to comment.