Skip to main content

GigaChat

本笔记本展示了如何使用 LangChain 与 GigaChat。 要使用它,您需要安装 gigachat Python 包。

%pip install --upgrade --quiet  gigachat

要获取 GigaChat 凭证,您需要 创建账户获取 API 访问权限

示例

import os
from getpass import getpass

os.environ["GIGACHAT_CREDENTIALS"] = getpass()
from langchain_community.chat_models import GigaChat

chat = GigaChat(verify_ssl_certs=False, scope="GIGACHAT_API_PERS")
from langchain_core.messages import HumanMessage, SystemMessage

messages = [
SystemMessage(
content="You are a helpful AI that shares everything you know. Talk in English."
),
HumanMessage(content="What is capital of Russia?"),
]

print(chat.invoke(messages).content)
The capital of Russia is Moscow.

相关


此页面是否有帮助?


您还可以留下详细的反馈 在 GitHub 上