ChatGPT插件检索器
本示例演示如何在LangChain中使用ChatGPT检索器插件。
要设置ChatGPT检索器插件,请按照此处的说明进行操作。
使用方法
import { ChatGPTPluginRetriever } from "langchain/retrievers/remote";
export const run = async () => {
const retriever = new ChatGPTPluginRetriever({
url: "http://0.0.0.0:8000",
auth: {
bearer: "super-secret-jwt-token-with-at-least-32-characters-long",
},
});
const docs = await retriever.getRelevantDocuments("hello world");
console.log(docs);
};