Skip to main content

Use text embeddings within Semantic Kernel and Ollama

In a previous post I showed you how to use Semantic Kernel, Ollama and Qdrant to generate and store vector embeddings. Doing this doesn't make much sense if we don't look at a way to expose and use this data. In this post I'll show you how to query the vector store to search for results.

Remark: If you missed the previous post, go check it out first.

Let’s dive in…

We start by having a look again at the model we were using:

First important thing to notice is that we can decided which properties should be used when querying the vector store. This is useful when we have multiple vectors stored in the data model. If we don’t specify the vector property, the first vector found will be used when querying. (In our example we only have one vector property so in theory we could ignore this).

Let’s do a first search:

Remark: Notice that we need to use the Property name not the name configured in the store or attribute.

Most vector stores also support the concept of filtering. This allows us to provide a filter that will filter the records  before applying the vector search. Using filters helps to reduce latency and processing costs.

Let’s add an extra property ‘Tag’ to our model and set the IsFilterable Property to true on the VectorStoreRecordData attribute:

Now we use this property to filter the results first before applying the vector search:

Great! In a next post, we first take a deeper looker look at Qdrant before we continue with a look at the text search feature of Semantic Kernel.

More information

Generate text embeddings with Semantic Kernel and Ollama

Vector search using Semantic Kernel Vector Store connectors (Preview) | Microsoft Learn

Popular posts from this blog

Kubernetes–Limit your environmental impact

Reducing the carbon footprint and CO2 emission of our (cloud) workloads, is a responsibility of all of us. If you are running a Kubernetes cluster, have a look at Kube-Green . kube-green is a simple Kubernetes operator that automatically shuts down (some of) your pods when you don't need them. A single pod produces about 11 Kg CO2eq per year( here the calculation). Reason enough to give it a try! Installing kube-green in your cluster The easiest way to install the operator in your cluster is through kubectl. We first need to install a cert-manager: kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.yaml Remark: Wait a minute before you continue as it can take some time before the cert-manager is up & running inside your cluster. Now we can install the kube-green operator: kubectl apply -f https://github.com/kube-green/kube-green/releases/latest/download/kube-green.yaml Now in the namespace where we want t...

Azure DevOps/ GitHub emoji

I’m really bad at remembering emoji’s. So here is cheat sheet with all emoji’s that can be used in tools that support the github emoji markdown markup: All credits go to rcaviers who created this list.

DevToys–A swiss army knife for developers

As a developer there are a lot of small tasks you need to do as part of your coding, debugging and testing activities.  DevToys is an offline windows app that tries to help you with these tasks. Instead of using different websites you get a fully offline experience offering help for a large list of tasks. Many tools are available. Here is the current list: Converters JSON <> YAML Timestamp Number Base Cron Parser Encoders / Decoders HTML URL Base64 Text & Image GZip JWT Decoder Formatters JSON SQL XML Generators Hash (MD5, SHA1, SHA256, SHA512) UUID 1 and 4 Lorem Ipsum Checksum Text Escape / Unescape Inspector & Case Converter Regex Tester Text Comparer XML Validator Markdown Preview Graphic Col...