Skip to content

Commit 959e0fe

Browse files
Update nvidia-nim-llama3-pdf-chat.md (#89)
* Update nvidia-nim-llama3-pdf-chat.md * Update tutorial/markdown/python/nvidia-nim-llama3-pdf-chat/nvidia-nim-llama3-pdf-chat.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * addressed comments --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 507c3a8 commit 959e0fe

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tutorial/markdown/python/nvidia-nim-llama3-pdf-chat/nvidia-nim-llama3-pdf-chat.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ description:
1111
content_type: tutorial
1212
filter: sdk
1313
technology:
14-
- fts
14+
- vector search
1515
- kv
1616
tags:
1717
- Streamlit
1818
- LangChain
1919
- Nvidia NIM
2020
- LLama3
2121
- Artificial Intelligence
22+
- Search Vector Index
2223
sdk_language:
2324
- python
2425
length: 45 Mins
@@ -89,9 +90,9 @@ Specifically, you need to do the following:
8990
- For the purpose of this tutorial, we will be using specific bucket, scope and collection. However, you may use any name of your choice but make sure to update names in all the steps.
9091
- Create a bucket named `pdf-chat`. We will use the `_default` scope and `_default` collection of this bucket.
9192

92-
### Create the Search Index on Full Text Service
93+
### Create the Search Vector Index on Search Service
9394

94-
We need to create the Search Index on the Full Text Service in Couchbase. For this demo, you can import the following index using the instructions.
95+
We need to create the Search Vector Index on the Search Service in Couchbase. For this demo, you can import the following index using the instructions.
9596

9697
- [Couchbase Capella](https://docs.couchbase.com/cloud/search/import-search-index.html)
9798

@@ -105,7 +106,7 @@ We need to create the Search Index on the Full Text Service in Couchbase. For th
105106
- Copy the following Index definition in the Import screen.
106107
- Click on Create Index to create the index.
107108

108-
You may also create a vector index using Search UI on both [Couchbase Capella](https://docs.couchbase.com/cloud/vector-search/create-vector-search-index-ui.html) and [Couchbase Self Managed Server](https://docs.couchbase.com/server/current/vector-search/create-vector-search-index-ui.html).
109+
You may also create a search vector index using Search UI on both [Couchbase Capella](https://docs.couchbase.com/cloud/vector-search/create-vector-search-index-ui.html) and [Couchbase Self Managed Server](https://docs.couchbase.com/server/current/vector-search/create-vector-search-index-ui.html).
109110

110111
#### Index Definition
111112

@@ -202,7 +203,7 @@ DB_PASSWORD = "<password_for_couchbase_cluster>"
202203
DB_BUCKET = "<name_of_bucket_to_store_documents>"
203204
DB_SCOPE = "<name_of_scope_to_store_documents>"
204205
DB_COLLECTION = "<name_of_collection_to_store_documents>"
205-
INDEX_NAME = "<name_of_fts_index_with_vector_support>"
206+
INDEX_NAME = "<name_of_search_index_with_vector_support>"
206207
LOGIN_PASSWORD = "<password to access the streamlit app>"
207208
```
208209

@@ -216,7 +217,7 @@ LOGIN_PASSWORD = "<password to access the streamlit app>"
216217
217218
### Running the Application
218219

219-
After starting Couchbase server, adding vector index and installing dependencies. Our Application is ready to run.
220+
After starting Couchbase server, adding search vector index and installing dependencies. Our Application is ready to run.
220221

221222
In the projects root directory, run the following command
222223

0 commit comments

Comments
 (0)