From 4e71a1702b0953c3cd83d332ea232e186d9b2705 Mon Sep 17 00:00:00 2001 From: "C.J. Jameson" Date: Sat, 3 Jun 2023 15:29:34 -0700 Subject: [PATCH] nit: pgvector python example notebook, fix variable reference (#5595) # Your PR Title (What it does) Fixes the pgvector python example notebook : one of the variables was not referencing anything ## Before submitting ## Who can review? Community members can review the PR once tests pass. Tag maintainers/contributors who might be interested: VectorStores / Retrievers / Memory - @dev2049 --- docs/modules/indexes/vectorstores/examples/pgvector.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/indexes/vectorstores/examples/pgvector.ipynb b/docs/modules/indexes/vectorstores/examples/pgvector.ipynb index 3674828b..314e7f64 100644 --- a/docs/modules/indexes/vectorstores/examples/pgvector.ipynb +++ b/docs/modules/indexes/vectorstores/examples/pgvector.ipynb @@ -246,7 +246,7 @@ "outputs": [], "source": [ "db = PGVector.from_documents(\n", - " documents=data,\n", + " documents=docs,\n", " embedding=embeddings,\n", " collection_name=collection_name,\n", " connection_string=connection_string,\n",