跳至主要内容

HuggingFace 推理

以下是如何将 HugggingFaceInference 模型作为 LLM 调用的示例

npm install @huggingface/inference@2
提示

我们正在统一所有软件包中的模型参数。我们现在建议使用 model 而不是 modelName,以及 apiKey 用于 API 密钥。

import { HuggingFaceInference } from "langchain/llms/hf";

const model = new HuggingFaceInference({
model: "gpt2",
apiKey: "YOUR-API-KEY", // In Node.js defaults to process.env.HUGGINGFACEHUB_API_KEY
});
const res = await model.invoke("1 + 1 =");
console.log({ res });

此页面是否有帮助?


您也可以在 GitHub 上留下详细的反馈 GitHub.