



Haskell bindings and examples for pgvector, enabling Haskell applications to treat PostgreSQL as a vector database.
Loading more......
Category: SDKs & Libraries
Brand: pgvector
License: MIT
Language: Haskell
Haskell bindings for the pgvector PostgreSQL extension, allowing Haskell applications to use PostgreSQL as a vector database. Designed to work with the postgresql-simple library.
Haskell bindings for pgvector
Integration with postgresql-simple
postgresql-simple Haskell database library.import Pgvector
Database extension support
pgvector extension (e.g., enabling via CREATE EXTENSION in SQL).vector column type provided by pgvector.Hackage-style dependency management
pgvector..cabal file with version bounds, e.g.:
build-depends: pgvector >= 0.1 && < 0.2
Versioned and changelogged
CHANGELOG.md for tracking changes across releases..cabal file under build-depends:
pgvector >= 0.1 && < 0.2
pgvector extension is installed and enabled in your database (e.g., via CREATE EXTENSION pgvector;).postgresql-simple library in your Haskell application.