2023-11-21 16:35:29 +00:00
|
|
|
from langchain_core.messages import AIMessage, HumanMessage
|
2023-11-20 21:09:30 +00:00
|
|
|
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_community.chat_models.baichuan import ChatBaichuan
|
2023-10-19 18:37:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_chat_baichuan() -> None:
|
|
|
|
chat = ChatBaichuan()
|
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chat_baichuan_with_model() -> None:
|
|
|
|
chat = ChatBaichuan(model="Baichuan2-13B")
|
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chat_baichuan_with_temperature() -> None:
|
|
|
|
chat = ChatBaichuan(model="Baichuan2-13B", temperature=1.0)
|
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chat_baichuan_with_kwargs() -> None:
|
|
|
|
chat = ChatBaichuan()
|
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message], temperature=0.88, top_p=0.7)
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
|
|
|
def test_extra_kwargs() -> None:
|
|
|
|
chat = ChatBaichuan(temperature=0.88, top_p=0.7)
|
|
|
|
assert chat.temperature == 0.88
|
|
|
|
assert chat.top_p == 0.7
|