<!--IMPORTS:[{"imported": "SolarChat", "source": "langchain_community.chat_models.solar", "docs": "https://python.langchain.com/api_reference/community/chat_models/langchain_community.chat_models.solar.SolarChat.html", "title": "# Related"}, {"imported": "HumanMessage", "source": "langchain_core.messages", "docs": "https://python.langchain.com/api_reference/core/messages/langchain_core.messages.human.HumanMessage.html", "title": "# Related"}, {"imported": "SystemMessage", "source": "langchain_core.messages", "docs": "https://python.langchain.com/api_reference/core/messages/langchain_core.messages.system.SystemMessage.html", "title": "# Related"}]-->
import os
os.environ["SOLAR_API_KEY"] = "SOLAR_API_KEY"
from langchain_community.chat_models.solar import SolarChat
from langchain_core.messages import HumanMessage, SystemMessage
chat = SolarChat(max_tokens=1024)
messages = [
SystemMessage(
content="You are a helpful assistant who translates English to Korean."
),
HumanMessage(
content="Translate this sentence from English to Korean. I want to build a project of large language model."
),
]
chat.invoke(messages)