Skip to main content

Chaindesk Retriever

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

Usage

npm install @langchain/community
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);

API Reference:


Help us out by providing feedback on this documentation page: