All connectors
RAG & vector stores

turbopuffer

turbopuffer namespace wrapper.

Wraps a turbopuffer namespace. Hits the same retrieved-doc validators on every query / upsert call.

Install

pnpm add @blackunicorn/bonklm-turbopuffer

Minimal example

import { Turbopuffer } from '@turbopuffer/turbopuffer'
import { wrapTurbopuffer } from '@blackunicorn/bonklm-turbopuffer'

const ns = wrapTurbopuffer(new Turbopuffer({ apiKey: KEY }).namespace('docs'), {
  validators: ['retrieved-doc'],
})
Related connectors