Skip to content

Commit 8e3e3a1

Browse files
Update langchain4j (#87)
* Update langchain4j.md * Update langchain4j.md * Update tutorial/markdown/java/langchain4j.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update tutorial/markdown/java/langchain4j.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 3fe5bab commit 8e3e3a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tutorial/markdown/java/langchain4j.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ acquired from pretrained model embeddings in a dedicated storage, developers can
5454
AI-based applications.
5555

5656
## Couchbase Embedding Store
57-
Couchbase langchain4j integration stores each embedding in a separate document and uses an FTS vector index to perform
57+
Couchbase langchain4j integration stores each embedding in a separate document and uses a search vector index to perform
5858
queries against stored vectors. Currently, it supports storing embeddings and their metadata, as well as removing
5959
embeddings. Filtering selected by vector search embeddings by their metadata was not supported at the moment of writing
6060
this tutorial. Please note that the embedding store integration is still under active development and the default
@@ -69,7 +69,7 @@ initialization:
6969
- name of the bucket in which embeddings should be stored
7070
- name of the scope in which embeddings should be stored
7171
- name of the collection in which embeddings should be stored
72-
- name of an FTS vector index to be used by the embedding store
72+
- name of an search vector index to be used by the embedding store
7373
- dimensionality (length) of vectors to be stored
7474

7575
The following sample code illustrates how to initialize an embedding store that connects to a locally running Couchbase
@@ -109,10 +109,10 @@ CouchbaseEmbeddingStore embeddingStore = new CouchbaseEmbeddingStore.Builder(cou
109109
```
110110

111111
### Vector Index
112-
The embedding store uses an FTS vector index in order to perform vector similarity lookups. If provided with a name for
112+
The embedding store uses a search vector index in order to perform vector similarity lookups. If provided with a name for
113113
vector index that does not exist on the cluster, the store will attempt to create a new index with default
114114
configuration based on the provided initialization settings. It is recommended to manually review the settings for the
115-
created index and adjust them according to specific use cases. More information about vector search and FTS index
115+
created index and adjust them according to specific use cases. More information about vector search and search vector index
116116
configuration can be found at [Couchbase Documentation](https://docs.couchbase.com/server/current/vector-search/vector-search.html).
117117

118118
### Embedding Documents

0 commit comments

Comments
 (0)