Our new LangChain Academy course on Deep Agents is now live! Enroll for free.
OSS (v1-alpha)
LangChain and LangGraph
import { ChatGPTPluginRetriever } from "langchain/retrievers/remote"; 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.invoke("hello world"); console.log(docs);
Was this page helpful?