package
0.0.1
Repository: https://github.com/milosgajdos/embeviz.git
Documentation: pkg.go.dev

# README

qdrant vector store

Experimental support for qdrant vector store.

If you wish to use it, you have to specify the DSN in the following format:

Insecure connections, qdrant cloud:

qdrant://[qdrant_cloud_api_key]@host:port

Secure encrypted connections, qdrant cloud:

qdrants://[qdrant_cloud_api_key]@host:port

If you want to run qdrant store by yourself, you don't need the qdrant cloud API key so you can specify the following DSN URL i.e. just omit the API key section:

qdrant://@host:port

Use a locally running qdrant instance (bound to localhost) over insecure connection:

go run ./... -dsn "qdrant://@0.0.0.0:6334"

You should be able to access your qdrant dashboard on http://0.0.0.0:6333/dashboard.