From 6613f6d14f5df3819e6a70dda2613e4d5fdfe836 Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Sun, 25 Feb 2024 08:07:04 -0800 Subject: [PATCH] Fix the SQLAlchemy Item class --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2122299..6de6ef5 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,8 @@ Add a vector column from pgvector.sqlalchemy import Vector class Item(Base): + __tablename__ = "items" + id: Mapped[int] = mapped_column(primary_key=True) embedding = mapped_column(Vector(3)) ```