From d2faa5d792843ffbd238746436ea1ca99b774493 Mon Sep 17 00:00:00 2001 From: Aaron Jimenez <aaronjimv@gmail.com> Date: Mon, 12 Feb 2024 12:09:33 -0800 Subject: [PATCH] Update link and fix typo in docs/examples/low_level/ (#10553) --- docs/examples/low_level/ingestion.ipynb | 4 ++-- docs/examples/low_level/oss_ingestion_retrieval.ipynb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/examples/low_level/ingestion.ipynb b/docs/examples/low_level/ingestion.ipynb index a1e06709ec..caf150bd3a 100644 --- a/docs/examples/low_level/ingestion.ipynb +++ b/docs/examples/low_level/ingestion.ipynb @@ -33,7 +33,7 @@ "id": "tsHaUeqRpflK", "metadata": {}, "source": [ - "# Pinecone\n", + "## Pinecone\n", "\n", "You will need a [pinecone.io](https://www.pinecone.io/) api key for this tutorial. You can [sign up for free](https://app.pinecone.io/?sessionType=signup) to get a Starter account.\n", "\n", @@ -79,7 +79,7 @@ "id": "22fb9e0a-566b-4f34-b9cf-72193cb51adb", "metadata": {}, "source": [ - "# OpenAI\n", + "## OpenAI\n", "\n", "You will need an [OpenAI](https://openai.com/) api key for this tutorial. Login to your [platform.openai.com](https://platform.openai.com/) account, click on your profile picture in the upper right corner, and choose 'API Keys' from the menu. Create an API key for this tutorial and save it. You will need it below." ] diff --git a/docs/examples/low_level/oss_ingestion_retrieval.ipynb b/docs/examples/low_level/oss_ingestion_retrieval.ipynb index c987de9e06..1aeaf0f270 100644 --- a/docs/examples/low_level/oss_ingestion_retrieval.ipynb +++ b/docs/examples/low_level/oss_ingestion_retrieval.ipynb @@ -21,7 +21,7 @@ "Notably, we use a fully open-source stack:\n", "\n", "- Sentence Transformers as the embedding model\n", - "- Postgres as the vector store (we support many other [vector stores](https://gpt-index.readthedocs.io/en/stable/core_modules/data_modules/storage/vector_stores.html) too!)\n", + "- Postgres as the vector store (we support many other [vector stores](https://gpt-index.readthedocs.io/en/stable/module_guides/storing/vector_stores.html) too!)\n", "- Llama 2 as the LLM (through [llama.cpp](https://github.com/ggerganov/llama.cpp))" ] }, @@ -147,7 +147,7 @@ "\n", "Using an existing postgres running at localhost, create the database we'll be using.\n", "\n", - "**NOTE**: Of course there are plenty of other open-source/self-hosted databases you can use! e.g. Chroma, Qdrant, Weaviate, and many more. Take a look at our [vector store guide](https://gpt-index.readthedocs.io/en/stable/core_modules/data_modules/storage/vector_stores.html).\n", + "**NOTE**: Of course there are plenty of other open-source/self-hosted databases you can use! e.g. Chroma, Qdrant, Weaviate, and many more. Take a look at our [vector store guide](https://gpt-index.readthedocs.io/en/stable/module_guides/storing/vector_stores.html).\n", "\n", "**NOTE**: You will need to setup postgres on your local system. Here's an example of how to set it up on OSX: https://www.sqlshack.com/setting-up-a-postgresql-database-on-mac/.\n", "\n", -- GitLab