From caf56ac50e1727913d9df8d94e159c03e1f3105d Mon Sep 17 00:00:00 2001 From: Rudolf Olah <89982117+rudolfolah@users.noreply.github.com> Date: Fri, 23 Feb 2024 00:46:04 -0500 Subject: [PATCH] Documentation Update for customization.rst: fixed link and package name (#11307) Update customization.rst * fixed link to LlamaHub * updated package name to reflect what's in PyPi --- docs/getting_started/customization.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting_started/customization.rst b/docs/getting_started/customization.rst index c2638073e9..2bd8362a15 100644 --- a/docs/getting_started/customization.rst +++ b/docs/getting_started/customization.rst @@ -37,14 +37,14 @@ In this tutorial, we start with the code you wrote for the `starter example <sta **"I want to use a different vector store"** -First, you can install the vector store you want to use. For example, to use `chromadb` as the vector store, you can install it using pip: +First, you can install the vector store you want to use. For example, to use Chroma as the vector store, you can install it using pip: .. code-block:: shell - pip install llama-index-chromadb + pip install llama-index-vector-stores-chroma -To learn more about all integrations available, checkout `LlamaHub <https://llamahub.ai`_. +To learn more about all integrations available, check out `LlamaHub <https://llamahub.ai>`_. Then, you can use it in your code: -- GitLab