ZhipuAI
The ZhipuAIEmbeddings
class uses the ZhipuAI API to generate embeddings for a given text.
Setup
You'll need to sign up for an ZhipuAI API key and set it as an environment variable named ZHIPUAI_API_KEY
.
Then, you'll need to install the @langchain/community
package:
- npm
- Yarn
- pnpm
npm install @langchain/community jsonwebtoken
yarn add @langchain/community jsonwebtoken
pnpm add @langchain/community jsonwebtoken
Usage
import { ZhipuAIEmbeddings } from "@langchain/community/embeddings/zhipuai";
const model = new ZhipuAIEmbeddings({});
const res = await model.embedQuery(
"What would be a good company name a company that makes colorful socks?"
);
console.log({ res });
API Reference:
- ZhipuAIEmbeddings from
@langchain/community/embeddings/zhipuai