Skip to main content

ChatAlibabaTongyi

LangChain.js 支持阿里巴巴 qwen 系列模型。

¥LangChain.js supports the Alibaba qwen family of models.

设置

¥Setup

你需要注册一个阿里巴巴 API 密钥,并将其设置为名为 ALIBABA_API_KEY 的环境变量。

¥You'll need to sign up for an Alibaba API key and set it as an environment variable named ALIBABA_API_KEY.

然后,你需要安装 @langchain/community 包:

¥Then, you'll need to install the @langchain/community package:

npm install @langchain/community @langchain/core

用法

¥Usage

以下是一个例子:

¥Here's an example:

import { ChatAlibabaTongyi } from "@langchain/community/chat_models/alibaba_tongyi";
import { HumanMessage } from "@langchain/core/messages";

// Default model is qwen-turbo
const qwenTurbo = new ChatAlibabaTongyi({
alibabaApiKey: "YOUR-API-KEY", // In Node.js defaults to process.env.ALIBABA_API_KEY
});

// Use qwen-plus
const qwenPlus = new ChatAlibabaTongyi({
model: "qwen-plus", // Available models: qwen-turbo, qwen-plus, qwen-max
temperature: 1,
alibabaApiKey: "YOUR-API-KEY", // In Node.js defaults to process.env.ALIBABA_API_KEY
});

const messages = [new HumanMessage("Hello")];

const res = await qwenTurbo.invoke(messages);
/*
AIMessage {
content: "Hello! How can I help you today? Is there something you would like to talk about or ask about? I'm here to assist you with any questions you may have.",
}
*/

const res2 = await qwenPlus.invoke(messages);
/*
AIMessage {
text: "Hello! How can I help you today? Is there something you would like to talk about or ask about? I'm here to assist you with any questions you may have.",
}
*/

API Reference:

¥Related