bob icon indicating copy to clipboard operation
bob copied to clipboard

pgvector support

Open gosom opened this issue 10 months ago • 1 comments

Is it possible to support a column of type vector from pgvector?

thanks

gosom avatar Feb 22 '25 07:02 gosom

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.)

stephenafamo avatar Feb 22 '25 13:02 stephenafamo