Skip to main content

Alibaba Tongyi

The AlibabaTongyiEmbeddings class uses the Alibaba Tongyi API to generate embeddings for a given text.

Setup

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

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

npm install @langchain/community

Usage

import { AlibabaTongyiEmbeddings } from "@langchain/community/embeddings/alibaba_tongyi";

const model = new AlibabaTongyiEmbeddings({});
const res = await model.embedQuery(
"What would be a good company name a company that makes colorful socks?"
);
console.log({ res });

API Reference:


Help us out by providing feedback on this documentation page: