mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-13 05:25:07 +00:00
- Support features from recent update: https://www.anthropic.com/news/token-saving-updates (mostly adding support for built-in tools in `bind_tools` - Add documentation around prompt caching, token-efficient tool use, and built-in tools.
14 lines
265 B
Python
14 lines
265 B
Python
from langchain_anthropic import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"ChatAnthropicMessages",
|
|
"ChatAnthropic",
|
|
"convert_to_anthropic_tool",
|
|
"Anthropic",
|
|
"AnthropicLLM",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert sorted(EXPECTED_ALL) == sorted(__all__)
|