mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
10 lines
266 B
Python
10 lines
266 B
Python
|
"""Test chat model integration."""
|
||
|
|
||
|
|
||
|
from langchain_anthropic.chat_models import ChatAnthropicMessages
|
||
|
|
||
|
|
||
|
def test_initialization() -> None:
|
||
|
"""Test chat model initialization."""
|
||
|
ChatAnthropicMessages(model_name="claude-instant-1.2", anthropic_api_key="xyz")
|