Skip to content

Commit 3ef56ea

Browse files
committed
Docs UpdateDocs UpdateDocs UpdateDocs UpdateDocs UpdateDocs UpdateDocs UpdateDocs UpdateDocs Updatesgnored, and an empty message aborts the commit.
1 parent 826a054 commit 3ef56ea

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

docs/core_docs/docs/integrations/vectorstores/couchbase.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import CodeBlock from "@theme/CodeBlock";
1010
[Couchbase](http://couchbase.com/) is an award-winning distributed NoSQL cloud database that delivers unmatched versatility, performance, scalability, and financial value for all of your cloud, mobile,
1111
AI, and edge computing applications. Couchbase embraces AI with coding assistance for developers and vector search for their applications.
1212

13-
Vector Search is a part of the [Full Text Search Service](https://docs.couchbase.com/server/current/learn/services-and-indexes/services/search-service.html) (Search Service) in Couchbase.
13+
The `CouchbaseSearchVectorStore` is an implementation of Vector Search that is a part of the [Full Text Search Service](https://docs.couchbase.com/server/current/learn/services-and-indexes/services/search-service.html) (Search Service) in Couchbase.
1414

15-
This tutorial explains how to use Vector Search in Couchbase. You can work with both [Couchbase Capella](https://www.couchbase.com/products/capella/) and your self-managed Couchbase Server.
15+
This tutorial explains how to use Vector Search via the Couchbase Search Service. You can work with both [Couchbase Capella](https://www.couchbase.com/products/capella/) and your self-managed Couchbase Server.
1616

1717
## Installation
1818

@@ -172,7 +172,7 @@ const store = await CouchbaseVectorStore.initialize(
172172

173173
## Basic Vector Search Example
174174

175-
The following example showcases how to use couchbase vector search and perform similarity search.
175+
The following example showcases how to use couchbase vector search via the Search Service and perform similarity search.
176176
For this example, we are going to load the "state_of_the_union.txt" file via the TextLoader,
177177
chunk the text into 500 character chunks with no overlaps and index all these chunks into Couchbase.
178178

docs/core_docs/docs/integrations/vectorstores/couchbase_query.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ import CodeBlock from "@theme/CodeBlock";
1111

1212
The `CouchbaseQueryVectorStore` is an implementation that uses Couchbase's Query service (SQL++) for vector similarity search instead of the Search service. This provides an alternative approach for vector operations using SQL++ queries with vector functions.
1313

14+
:::note
15+
16+
This functionality is only available in Couchbase Server 8.0 and above, which introduced vector search capabilities in the Query service.
17+
18+
:::
19+
1420
## Key Differences from CouchbaseVectorStore
1521

1622
- **Query Service**: Uses Couchbase's Query service with SQL++ instead of the Search service

0 commit comments

Comments
 (0)