From 022f7e51c6eda42dc63138b0e31acd459986c90b Mon Sep 17 00:00:00 2001 From: Laure-di <62625835+Laure-di@users.noreply.github.com> Date: Fri, 4 Oct 2024 02:41:38 -0700 Subject: [PATCH] Update tutorials/how-to-implement-rag/index.mdx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Rémy Léone --- tutorials/how-to-implement-rag/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/how-to-implement-rag/index.mdx b/tutorials/how-to-implement-rag/index.mdx index 21e1aadef5..76374048da 100644 --- a/tutorials/how-to-implement-rag/index.mdx +++ b/tutorials/how-to-implement-rag/index.mdx @@ -77,7 +77,7 @@ To perform these actions, you'll need to connect to your PostgreSQL database. Yo ### Step 2: Install the pgvector Extension -pgvector is essential for storing and indexing high-dimensional vectors, which are critical for retrieval-augmented generation (RAG) systems. Ensure that it is installed by executing the following SQL command: +[pgvector](https://github.com/pgvector/pgvector) is essential for storing and indexing high-dimensional vectors, which are critical for retrieval-augmented generation (RAG) systems. Ensure that it is installed by executing the following SQL command: ```sql CREATE EXTENSION IF NOT EXISTS vector;