From b73fb27e888c74d8e292c242a681e85cea3d00ce Mon Sep 17 00:00:00 2001 From: John Alexander <4804801+JRAlexander@users.noreply.github.com> Date: Sun, 17 Sep 2023 15:51:50 -0500 Subject: [PATCH] Update setup.md with LlamaIndex updated field. In setup.md in the LlamaIndex setup section - Changed GPTSimpleVectorIndex to GPTVectorStoreIndex to match the updated field in LlamaIndex. Fixes issue #307. --- docs/providers/llama/setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/providers/llama/setup.md b/docs/providers/llama/setup.md index 2378700dd..411be0bf7 100644 --- a/docs/providers/llama/setup.md +++ b/docs/providers/llama/setup.md @@ -33,7 +33,7 @@ with ChatGPT and your external data. **Different Index Types** -By default, we use a `GPTSimpleVectorIndex` to store document chunks in memory, +By default, we use a `GPTVectorStoreIndex` to store document chunks in memory, and retrieve top-k nodes by embedding similarity. Different index types are optimized for different data and query use-cases. See this guide on [How Each Index Works](https://gpt-index.readthedocs.io/en/latest/guides/primer/index_guide.html) to learn more. @@ -48,4 +48,4 @@ You can launch the test suite with this command: ```bash pytest ./tests/datastore/providers/llama/test_llama_datastore.py -``` \ No newline at end of file +```