AlephAlpha
LangChain.js 支持 AlephAlpha 的 Luminous 模型系列。您需要注册 API 密钥 在他们的网站上。
以下是一个示例
提示
- npm
- Yarn
- pnpm
npm install @langchain/community
yarn add @langchain/community
pnpm add @langchain/community
import { AlephAlpha } from "@langchain/community/llms/aleph_alpha";
const model = new AlephAlpha({
aleph_alpha_api_key: "YOUR_ALEPH_ALPHA_API_KEY", // Or set as process.env.ALEPH_ALPHA_API_KEY
});
const res = await model.invoke(`Is cereal soup?`);
console.log({ res });
/*
{
res: "\nIs soup a cereal? I don’t think so, but it is delicious."
}
*/
API 参考
- AlephAlpha 来自
@langchain/community/llms/aleph_alpha