bob
bob copied to clipboard
pgvector support
Is it possible to support a column of type vector from pgvector?
thanks
This is possible, for example, support for most types from PostGIS are supported.
You would need:
- The column type name when the column information is read from Postgres
- A Go type that can scan this type such as pgvector.Vector.
- Adding the default type configuration (for randomization, comparison, e.t.c.)