From c47a9c3fb0e8d9a70ea26588a617d086bcdcc2b3 Mon Sep 17 00:00:00 2001 From: LJ Date: Fri, 25 Apr 2025 12:27:44 -0700 Subject: [PATCH] fix(postgres): update spec in Python SDK to reflect latest change --- python/cocoindex/storages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cocoindex/storages.py b/python/cocoindex/storages.py index 8a038cd59..f8f5ace61 100644 --- a/python/cocoindex/storages.py +++ b/python/cocoindex/storages.py @@ -9,7 +9,7 @@ class Postgres(op.StorageSpec): """Storage powered by Postgres and pgvector.""" - database_url: str | None = None + database: AuthEntryReference | None = None table_name: str | None = None @dataclass