ChatYandexGPT
此笔记本介绍了如何将 Langchain 与YandexGPT聊天模型一起使用。
要使用它,您应该安装了yandexcloud
python 包。
%pip install --upgrade --quiet yandexcloud
首先,您应该创建服务帐户,并赋予其ai.languageModels.user
角色。
接下来,您有两种身份验证选项
-
IAM 令牌。您可以在构造函数参数
iam_token
中指定令牌,或在环境变量YC_IAM_TOKEN
中指定令牌。 -
API 密钥。您可以在构造函数参数
api_key
中指定密钥,或在环境变量YC_API_KEY
中指定密钥。
要指定模型,您可以使用model_uri
参数,请参阅文档以了解详细信息。
默认情况下,将使用参数folder_id
或环境变量YC_FOLDER_ID
中指定的文件夹中的最新版本的yandexgpt-lite
。
from langchain_community.chat_models import ChatYandexGPT
from langchain_core.messages import HumanMessage, SystemMessage
chat_model = ChatYandexGPT()
answer = chat_model.invoke(
[
SystemMessage(
content="You are a helpful assistant that translates English to French."
),
HumanMessage(content="I love programming."),
]
)
answer
AIMessage(content='Je adore le programmement.')