This commit is contained in:
Chester Curme
2026-02-17 14:45:30 -05:00
parent cf1804932f
commit 249dcedaec
3 changed files with 5 additions and 4 deletions

View File

@@ -8,8 +8,8 @@ from langchain_anthropic.chat_models import (
from langchain_anthropic.llms import AnthropicLLM
__all__ = [
"__version__",
"AnthropicLLM",
"ChatAnthropic",
"__version__",
"convert_to_anthropic_tool",
]

View File

@@ -1,8 +1,8 @@
"""Check version consistency between `pyproject.toml` and `_version.py`.
This script validates that the version defined in pyproject.toml matches the `__version__`
variable in `langchain_anthropic/_version.py`. Intended for use as a pre-commit hook to
prevent version mismatches.
This script validates that the version defined in pyproject.toml matches the
`__version__` variable in `langchain_anthropic/_version.py`. Intended for use as a
pre-commit hook to prevent version mismatches.
"""
import re

View File

@@ -1,6 +1,7 @@
from langchain_anthropic import __all__
EXPECTED_ALL = [
"__version__",
"ChatAnthropic",
"convert_to_anthropic_tool",
"AnthropicLLM",