Skip to main content

入门指南: LLMs

LangChain 提供了使用各种 LLM 的标准界面。

要开始, 只需使用 LLM 实现的 call 方法, 传递一个 string 输入。在这个例子中, 我们使用了 OpenAI 实现:

import { OpenAI } from "langchain/llms/openai";

export const run = async () => {
const model = new OpenAI();
// `call` is a simple string-in, string-out method for interacting with the model.
const resA = await model.call(
"What would be a good company name a company that makes colorful socks?"
);
console.log({ resA });
// { resA: '\n\nSocktastic Colors' }
};

深入研究