From 564a9b68a587f67df1b373ea910c5176c972e5c8 Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Fri, 24 Apr 2026 08:53:21 -0400 Subject: [PATCH] Enable async_mode on PGVector for async method support Co-Authored-By: Claude Opus 4.6 --- blueprints/rag/logic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/blueprints/rag/logic.py b/blueprints/rag/logic.py index f281519..2d5772f 100644 --- a/blueprints/rag/logic.py +++ b/blueprints/rag/logic.py @@ -38,6 +38,7 @@ def _get_vector_store() -> PGVector: connection=_pgvector_url, use_jsonb=True, create_extension=False, # created by docker init script + async_mode=True, ) return _vector_store