Showing results for vector - Azure SQL Devs’ Corner

Feb 4, 2025
7
3

Storing, querying and keeping embeddings updated: options and best practices

Davide Mauri
Davide Mauri

Embeddings and vectors are becoming common terms not only for engineers involved in AI-related activities but also for those using databases. Some common points of discussion that frequently arise among users familiar with vectors and embeddings include: Let’s tackle each one of these questions one by one starting from the very...

AIVectors
Oct 14, 2024
0
5

The ultimate chatbot?

Davide Mauri
Davide Mauri

RAG - Retrieval Augmented Generation - is by far one of the most common patterns today as it enables the creation of chatbots that can chat on your own data, as I described in my previous "Retrieval Augmented Generation with Azure SQL" blog post. As soon as you start to use it excitement grows, as it provides a sort of a magical experience. Experie...

Azure SQLAIVectors
Sep 26, 2024
0
3

Build a chatbot on your own data in 1 hour with Azure SQL, Langchain and Chainlit

Davide Mauri
Davide Mauri

Chatbots are the hot topic lately, and now you can create them easily by downloading solutions like OpenWebUI, connect it to Ollama or any OpenAI compatible API, choose your favorite language model, and then run it. It just takes a few minutes and it's done. But building chatbots is not enough, you most likely want to build a chatbot on your own...

AIAzure SQLVectors
Sep 11, 2024
4
1

EAP for Vector Support Refresh – Introducing Vector type

Davide Mauri Pooja Kamath
Davide,
Pooja

Latest update - 06 November 2024 Vector Support is now available as Public Preview! Read the announcement here: Public Preview of Native Vector Support in Azure SQL Database! Access to full documentation here: Vector functions. The new data type Not even 6 months ago we started the Early Adopter Preview vector data support in Azure SQL, and...

AIAzure SQLVectors
Aug 26, 2024
0
2

Retrieval Augmented Generation with Azure SQL

Davide Mauri
Davide Mauri

Retrieval Augmented Generation, or RAG, is one of the hottest topics at the moment as it opens up the possibility of interacting with data using natural language, which is a long-time dream finally coming true. It is very likely that a lot of your data is already stored or will be stored in Azure SQL, so a common request is to have an exampl...

Azure SQLAIVectors
Apr 18, 2024
0
0

Vector Search Optimization via KMeans, Voronoi Cells and Inverted File Index (aka “Cell-Probing”)

Davide Mauri
Davide Mauri

In a previous article I already mentioned how vectors can be easily stored in Azure SQL already and how to calculate dot product and cosine distance using just T-SQL. In this article I will show how to improve the performance in vector search by using a technique that has many name but is really based on something very well know already: KMeans Clu...

AIAzure SQLVectors
Jun 4, 2023
3
9

Vector Similarity Search with Azure SQL database and OpenAI

Davide Mauri
Davide Mauri

Latest update - 06 November 2024 Vector Support is now available as Public Preview! Read the announcement here: Public Preview of Native Vector Support in Azure SQL Database! Access to full documentation here: Vector functions. Vectors and Embeddings Vector databases are gaining quite a lot of interest lately. Using text embeddings and vector op...

Azure SQL