ChatPrem
设置
- 创建 Prem AI 帐户并获取您的 API 密钥 此处。
- 导出或内联设置您的 API 密钥。ChatPrem 类默认设置为
process.env.PREM_API_KEY
。
export PREM_API_KEY=your-api-key
您可以按如下方式使用 Prem AI 提供的模型
提示
- npm
- Yarn
- pnpm
npm install @langchain/community
yarn add @langchain/community
pnpm add @langchain/community
import { ChatPrem } from "@langchain/community/chat_models/premai";
import { HumanMessage } from "@langchain/core/messages";
const model = new ChatPrem({
// In Node.js defaults to process.env.PREM_API_KEY
apiKey: "YOUR-API-KEY",
// In Node.js defaults to process.env.PREM_PROJECT_ID
project_id: "YOUR-PROJECT_ID",
});
console.log(await model.invoke([new HumanMessage("Hello there!")]));
API 参考
- ChatPrem 来自
@langchain/community/chat_models/premai
- HumanMessage 来自
@langchain/core/messages