Skip to main content
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);

Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.
I