You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# title and description do not need to be added to markdown, start with H2 (##)
5
-
title: Build Vector Search with Couchbase .NET Semantic Kernel Connector and OpenAI
6
+
title: Build Vector Search with Semantic Kernel, Couchbase Hyperscale and Composite Vector Index
6
7
short_title: Vector Search with Semantic Kernel
7
8
description:
8
-
- Build a semantic search application using Couchbase Vector Search with Semantic Kernel.
9
+
- Build a semantic search application using Semantic Kernel with Couchbase Hyperscale and Composite Vector Index.
9
10
- Learn to use the Couchbase .NET Vector Store Connector for Microsoft Semantic Kernel.
10
11
- Discover how to generate embeddings with OpenAI and store them in Couchbase.
11
12
- Perform vector similarity searches with filtering using SQL++ and ANN_DISTANCE.
12
13
content_type: tutorial
13
14
filter: sdk
14
15
technology:
15
-
- hyperscale vector index
16
-
- composite vector index
16
+
- vector search
17
17
- kv
18
18
tags:
19
19
- Semantic Kernel
20
20
- OpenAI
21
21
- Artificial Intelligence
22
+
- Hyperscale Vector Index
23
+
- Composite Vector Index
22
24
sdk_language:
23
25
- csharp
24
26
length: 30 Mins
25
27
---
26
28
27
-
## Repository Links
28
-
29
-
-**Connector Repository**: [couchbase-semantic-kernel](https://github.com/Couchbase-Ecosystem/couchbase-semantic-kernel) - The official Couchbase .NET Vector Store Connector for Microsoft Semantic Kernel
30
-
-**This Example**: [CouchbaseVectorSearchDemo](https://github.com/couchbase-examples/couchbase-semantic-kernel-quickstart/tree/main/CouchbaseVectorSearchDemo) - Complete working example demonstrating vector search with Couchbase
31
-
32
29
## Introduction
33
30
34
31
This demo showcases the **Semantic Kernel Couchbase connector** - a .NET library that bridges Microsoft's Semantic Kernel framework with Couchbase's vector search capabilities. The connector provides a seamless integration that allows developers to build AI-powered applications using familiar Semantic Kernel abstractions while leveraging Couchbase's vector indexing for high-performance semantic search.
@@ -40,6 +37,11 @@ The connector supports three index types:
40
37
41
38
This makes the connector ideal for RAG (Retrieval-Augmented Generation) applications, semantic search engines, hybrid search, and recommendation systems.
42
39
40
+
### Repository Links
41
+
42
+
-**Connector Repository**: [couchbase-semantic-kernel](https://github.com/Couchbase-Ecosystem/couchbase-semantic-kernel) - The official Couchbase .NET Vector Store Connector for Microsoft Semantic Kernel
43
+
-**This Example**: [CouchbaseVectorSearchDemo](https://github.com/couchbase-examples/couchbase-semantic-kernel-quickstart/tree/main/CouchbaseVectorSearchDemo) - Complete working example demonstrating vector search with Couchbase
0 commit comments