@@ -54,7 +54,7 @@ acquired from pretrained model embeddings in a dedicated storage, developers can
5454AI-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
5858queries against stored vectors. Currently, it supports storing embeddings and their metadata, as well as removing
5959embeddings. Filtering selected by vector search embeddings by their metadata was not supported at the moment of writing
6060this 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
7575The 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
113113vector index that does not exist on the cluster, the store will attempt to create a new index with default
114114configuration 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
116116configuration can be found at [ Couchbase Documentation] ( https://docs.couchbase.com/server/current/vector-search/vector-search.html ) .
117117
118118### Embedding Documents
0 commit comments