All connectors
RAG & vector stores

Qdrant

Qdrant client wrapper.

Wraps the Qdrant client. Hits the same validators on every retrieval call, no matter which collection.

Install

pnpm add @blackunicorn/bonklm-qdrant

Minimal example

import { QdrantClient } from '@qdrant/js-client-rest'
import { wrapQdrant } from '@blackunicorn/bonklm-qdrant'

const qdrant = wrapQdrant(new QdrantClient({ url: '...' }), {
  validators: ['retrieved-doc'],
})
Related connectors