Minimax
The MinimaxEmbeddings class uses the Minimax API to generate embeddings for a given text.
Setup
To use Minimax model, you'll need a Minimax account, an API key, and a Group ID
Usage
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 });
};
Related
- Embedding model conceptual guide
 - Embedding model how-to guides