qdrant
Self-hosted or cloud Qdrant via HTTP.
import { qdrant } from '@agentskit/memory'
const store = qdrant({
url: process.env.QDRANT_URL!,
apiKey: process.env.QDRANT_API_KEY,
collection: 'agentskit',
})
| Option | Type |
|---|
url | string |
apiKey | string? |
collection | string |
fetch | typeof fetch |