.. | ||
images | ||
Getting_started_with_kusto_and_openai_embeddings.ipynb | ||
README.md |
Kusto as a Vector database
Azure Data Explorer aka Kusto is a cloud-based data analytics service that enables users to perform advanced analytics on large datasets in real-time. It is particularly well-suited for handling large volumes of data, making it an excellent choice for storing and searching vectors.
Kusto supports a special data type called dynamic, which can store unstructured data such as arrays and properties bag. Dynamic data type is perfect for storing vector values. You can further augment the vector value by storing metadata related to the original object as separate columns in your table.
Kusto also supports in-built function series_cosine_similarity_fl to perform vector similarity searches.
Get started with Kusto for free.
Getting started with Kusto and Open AI embedding
Demo Scenario
If you’d like to try this demo, please follow the instructions in the Notebook.
It will allow you to -
-
Use precomputed embeddings created by OpenAI API.
-
Store the embeddings in Kusto.
-
Convert raw text query to an embedding with OpenAI API.
-
Use Kusto to perform cosine similarity search in the stored embeddings.