Minimax
MinimaxEmbeddings
类使用 Minimax API 为给定的文本生成嵌入。
设置
要使用 Minimax 模型,您需要一个Minimax 帐户、一个API 密钥和一个组 ID
用法
import { MinimaxEmbeddings } from "langchain/embeddings/minimax";
export const run = async () => {
/* Embed queries */
const embeddings = new MinimaxEmbeddings();
const res = await embeddings.embedQuery("Hello world");
console.log(res);
/* Embed documents */
const documentRes = await embeddings.embedDocuments([
"Hello world",
"Bye bye",
]);
console.log({ documentRes });
};