Skip to content

Commit a44138a

Browse files
Added changes according to latest docs
1 parent 7c03677 commit a44138a

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

tutorial/markdown/aspnet/semantic-kernel/semantic-kernel-tutorial.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
# frontmatter
3-
path: "/tutorial-csharp-couchbase-vector-search-semantic-kernel"
3+
path: "/tutorial-csharp-semantic-kernel-vector-search-with-hyperscale-or-composite-vector-index"
4+
alt_paths: ["/tutorial-csharp-semantic-kernel-vector-search-with-hyperscale-vector-index", "/tutorial-csharp-semantic-kernel-vector-search-with-composite-vector-index"]
45
# 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
67
short_title: Vector Search with Semantic Kernel
78
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.
910
- Learn to use the Couchbase .NET Vector Store Connector for Microsoft Semantic Kernel.
1011
- Discover how to generate embeddings with OpenAI and store them in Couchbase.
1112
- Perform vector similarity searches with filtering using SQL++ and ANN_DISTANCE.
@@ -19,27 +20,31 @@ tags:
1920
- Semantic Kernel
2021
- OpenAI
2122
- Artificial Intelligence
23+
- Hyperscale Vector Index
24+
- Composite Vector Index
2225
sdk_language:
2326
- csharp
2427
length: 30 Mins
2528
---
2629

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-
3230
## Introduction
3331

3432
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.
3533

34+
35+
3636
The connector supports three index types:
3737
- **Hyperscale Vector Index** - for pure vector search at scale ← *Used in this demo*
3838
- **Composite Vector Index** - for vector search with heavy scalar filtering
3939
- **Search Vector Index** (using Search service) - for hybrid text + semantic search
4040

4141
This makes the connector ideal for RAG (Retrieval-Augmented Generation) applications, semantic search engines, hybrid search, and recommendation systems.
4242

43+
### Repository Links
44+
45+
- **Connector Repository**: [couchbase-semantic-kernel](https://github.com/Couchbase-Ecosystem/couchbase-semantic-kernel) - The official Couchbase .NET Vector Store Connector for Microsoft Semantic Kernel
46+
- **This Example**: [CouchbaseVectorSearchDemo](https://github.com/couchbase-examples/couchbase-semantic-kernel-quickstart/tree/main/CouchbaseVectorSearchDemo) - Complete working example demonstrating vector search with Couchbase
47+
4348
## Prerequisites
4449

4550
### Couchbase Server Setup

0 commit comments

Comments
 (0)