跳至主要内容

AnthropicLLM

注意

您当前所在的页面记录了将 Anthropic 遗留 Claude 2 模型用作文本补全模型。最新且最流行的 Anthropic 模型是聊天补全模型,文本补全模型已被弃用。

您可能需要查找此页面

此示例介绍了如何使用 LangChain 与Anthropic模型进行交互。

安装

%pip install -qU langchain-anthropic

环境设置

我们需要获取Anthropic API 密钥,并设置ANTHROPIC_API_KEY环境变量

import os
from getpass import getpass

os.environ["ANTHROPIC_API_KEY"] = getpass()

用法

from langchain_anthropic import AnthropicLLM
from langchain_core.prompts import PromptTemplate

template = """Question: {question}

Answer: Let's think step by step."""

prompt = PromptTemplate.from_template(template)

model = AnthropicLLM(model="claude-2.1")

chain = prompt | model

chain.invoke({"question": "What is LangChain?"})
'\nLangChain is a decentralized blockchain network that leverages AI and machine learning to provide language translation services.'

此页面是否有帮助?


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