ChatYandexGPT
这篇笔记介绍了如何使用 YandexGPT 的聊天模型。
要使用,您应该已经安装了 yandexcloud
Python 包。
%pip install --upgrade --quiet yandexcloud
首先,您应该使用 ai.languageModels.user
角色 创建服务账号。
接下来,您有两种身份验证选项:
您可以在构造函数参数
iam_token
中指定令牌,或者在环境变量YC_IAM_TOKEN
中指定。您可以在构造函数参数
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.')