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.hunyuan import ChatHunyuan
|
2023-10-19 19:10:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_chat_hunyuan() -> None:
|
|
|
|
chat = ChatHunyuan()
|
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chat_hunyuan_with_temperature() -> None:
|
|
|
|
chat = ChatHunyuan(temperature=0.6)
|
|
|
|
message = HumanMessage(content="Hello")
|
|
|
|
response = chat([message])
|
|
|
|
assert isinstance(response, AIMessage)
|
|
|
|
assert isinstance(response.content, str)
|
|
|
|
|
|
|
|
|
|
|
|
def test_extra_kwargs() -> None:
|
|
|
|
chat = ChatHunyuan(temperature=0.88, top_p=0.7)
|
|
|
|
assert chat.temperature == 0.88
|
|
|
|
assert chat.top_p == 0.7
|