From 73e123cc4efdc2b59e80600c668d224526a1d8e3 Mon Sep 17 00:00:00 2001 From: Kane Norman <51185594+kanenorman@users.noreply.github.com> Date: Fri, 11 Oct 2024 08:43:05 -0500 Subject: [PATCH] docs: update PgvectorDocumentStore docstring Co-authored-by: David S. Batista --- .../document_stores/pgvector/document_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/pgvector/src/haystack_integrations/document_stores/pgvector/document_store.py b/integrations/pgvector/src/haystack_integrations/document_stores/pgvector/document_store.py index fe4102c4a..3600670b6 100644 --- a/integrations/pgvector/src/haystack_integrations/document_stores/pgvector/document_store.py +++ b/integrations/pgvector/src/haystack_integrations/document_stores/pgvector/document_store.py @@ -131,7 +131,7 @@ def __init__( [pgvector documentation](https://github.com/pgvector/pgvector?tab=readme-ov-file#hnsw). :param keyword_index_name: Index name for the Keyword index. :param connection_param_kwargs: A dictionary of parameters for the PostgreSQL connection. - If you prefer not to use the `connection_string`, you can specify connection parameters here. + You can specify individual connections parameters here instead of a `connection_string` Common parameters include 'user', 'password', 'host', 'port', & 'dbname'. For a complete list, refer to the [PostgreSQL documentation](https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-PARAMKEYWORDS). Use the `Secret.from_env_var()` method to securely load parameters from environment variables.