This example shows how to use the Chaindesk Retriever in a retrieval chain to retrieve documents from a Chaindesk.ai datastore.

Usage

npm
npm install @langchain/community @langchain/core
import { ChaindeskRetriever } from "@langchain/community/retrievers/chaindesk";

const retriever = new ChaindeskRetriever({
  datastoreId: "DATASTORE_ID",
  apiKey: "CHAINDESK_API_KEY", // optional: needed for private datastores
  topK: 8, // optional: default value is 3
});

const docs = await retriever.invoke("hello");

console.log(docs);