79243664

Date: 2024-12-02 10:24:52
Score: 0.5
Natty:
Report link

In my case, the issue was that Postgres was looking for the vector type in the public schema instead of the shared_extensions schema. So this ended up working for me:

CREATE TABLE langchain_pg_embedding (
  collection_id uuid, 
  embedding shared_extensions.vector(1536),
  ...
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sebi