chore(anthropic): add version (#35293)

This commit is contained in:
ccurme
2026-02-17 15:49:14 -05:00
committed by GitHub
parent 6fe7845cd1
commit 8166e0137d
6 changed files with 92 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
"""Claude (Anthropic) partner package for LangChain."""
from langchain_anthropic._version import __version__
from langchain_anthropic.chat_models import (
ChatAnthropic,
convert_to_anthropic_tool,
@@ -9,5 +10,6 @@ from langchain_anthropic.llms import AnthropicLLM
__all__ = [
"AnthropicLLM",
"ChatAnthropic",
"__version__",
"convert_to_anthropic_tool",
]

View File

@@ -0,0 +1,3 @@
"""Version information for langchain-anthropic."""
__version__ = "1.3.3"