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
- Yarn
- pnpm
npm install @langchain/community
yarn add @langchain/community
pnpm add @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:
- ChaindeskRetriever from
@langchain/community/retrievers/chaindesk