2023-04-14 22:09:07 +00:00
|
|
|
"""Test Anthropic API wrapper."""
|
|
|
|
from typing import List
|
|
|
|
|
|
|
|
import pytest
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_core.callbacks import CallbackManager
|
2023-11-21 16:35:29 +00:00
|
|
|
from langchain_core.messages import AIMessage, BaseMessage, HumanMessage
|
|
|
|
from langchain_core.outputs import ChatGeneration, LLMResult
|
2023-04-14 22:09:07 +00:00
|
|
|
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_community.chat_models.anthropic import (
|
2023-09-01 20:16:57 +00:00
|
|
|
ChatAnthropic,
|
2023-04-14 22:09:07 +00:00
|
|
|
)
|
|
|
|
from tests.unit_tests.callbacks.fake_callback_handler import FakeCallbackHandler
|
|
|
|
|
|
|
|
|
2023-09-28 18:47:29 +00:00
|
|
|
@pytest.mark.scheduled
|
2023-04-14 22:09:07 +00:00
|
|
|
def test_anthropic_call() -> None:
|
|
|
|
"""Test valid call to anthropic."""
|
2023-04-15 00:22:01 +00:00
|
|
|
chat = ChatAnthropic(model="test")
|
2023-04-14 22:09:07 +00:00
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
2023-09-28 18:47:29 +00:00
|
|
|
@pytest.mark.scheduled
|
2023-06-20 04:30:52 +00:00
|
|
|
def test_anthropic_generate() -> None:
|
|
|
|
"""Test generate method of anthropic."""
|
|
|
|
chat = ChatAnthropic(model="test")
|
|
|
|
chat_messages: List[List[BaseMessage]] = [
|
|
|
|
[HumanMessage(content="How many toes do dogs have?")]
|
|
|
|
]
|
|
|
|
messages_copy = [messages.copy() for messages in chat_messages]
|
|
|
|
result: LLMResult = chat.generate(chat_messages)
|
|
|
|
assert isinstance(result, LLMResult)
|
|
|
|
for response in result.generations[0]:
|
|
|
|
assert isinstance(response, ChatGeneration)
|
|
|
|
assert isinstance(response.text, str)
|
|
|
|
assert response.text == response.message.content
|
|
|
|
assert chat_messages == messages_copy
|
|
|
|
|
|
|
|
|
2023-09-28 18:47:29 +00:00
|
|
|
@pytest.mark.scheduled
|
2023-04-14 22:09:07 +00:00
|
|
|
def test_anthropic_streaming() -> None:
|
|
|
|
"""Test streaming tokens from anthropic."""
|
2023-04-15 00:22:01 +00:00
|
|
|
chat = ChatAnthropic(model="test", streaming=True)
|
2023-04-14 22:09:07 +00:00
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
2023-09-28 18:47:29 +00:00
|
|
|
@pytest.mark.scheduled
|
2023-04-14 22:09:07 +00:00
|
|
|
def test_anthropic_streaming_callback() -> None:
|
|
|
|
"""Test that streaming correctly invokes on_llm_new_token callback."""
|
|
|
|
callback_handler = FakeCallbackHandler()
|
|
|
|
callback_manager = CallbackManager([callback_handler])
|
|
|
|
chat = ChatAnthropic(
|
2023-04-15 00:22:01 +00:00
|
|
|
model="test",
|
2023-04-14 22:09:07 +00:00
|
|
|
streaming=True,
|
|
|
|
callback_manager=callback_manager,
|
|
|
|
verbose=True,
|
|
|
|
)
|
2023-04-15 00:22:01 +00:00
|
|
|
message = HumanMessage(content="Write me a sentence with 10 words.")
|
2023-04-14 22:09:07 +00:00
|
|
|
chat([message])
|
|
|
|
assert callback_handler.llm_streams > 1
|
|
|
|
|
|
|
|
|
2023-09-28 18:47:29 +00:00
|
|
|
@pytest.mark.scheduled
|
2023-04-14 22:09:07 +00:00
|
|
|
async def test_anthropic_async_streaming_callback() -> None:
|
|
|
|
"""Test that streaming correctly invokes on_llm_new_token callback."""
|
|
|
|
callback_handler = FakeCallbackHandler()
|
|
|
|
callback_manager = CallbackManager([callback_handler])
|
|
|
|
chat = ChatAnthropic(
|
2023-04-15 00:22:01 +00:00
|
|
|
model="test",
|
2023-04-14 22:09:07 +00:00
|
|
|
streaming=True,
|
|
|
|
callback_manager=callback_manager,
|
|
|
|
verbose=True,
|
|
|
|
)
|
|
|
|
chat_messages: List[BaseMessage] = [
|
|
|
|
HumanMessage(content="How many toes do dogs have?")
|
|
|
|
]
|
|
|
|
result: LLMResult = await chat.agenerate([chat_messages])
|
|
|
|
assert callback_handler.llm_streams > 1
|
|
|
|
assert isinstance(result, LLMResult)
|
|
|
|
for response in result.generations[0]:
|
|
|
|
assert isinstance(response, ChatGeneration)
|
|
|
|
assert isinstance(response.text, str)
|
|
|
|
assert response.text == response.message.content
|