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
Copy file name to clipboardExpand all lines: README.md
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,19 @@ This example shows how to use Azure OpenAI from Azure SQL database to get the ve
17
17
18
18
For an introduction on text and code embeddings, check out this OpenAI article: [Introducing text and code embeddings](https://openai.com/blog/introducing-text-and-code-embeddings).
19
19
20
-
Azure SQL database can be used to significatly speed up vectors operations using column store indexes, so that search can have sub-seconds performances even on large datasets.
20
+
Azure SQL database can be used to easily and quickly perform vector similarity search. There are two options for this: a native option and a classic option.
21
21
22
-

22
+
The **native option** is to use the new Vector Functions, recently introduced in Azure SQL database. Vector Functions are a set of functions that can be used to perform vector operations directly in the database.
The **classic option** is to use the classic T-SQL to perform vector operations, with the support for columnstore indexes for getting good performances.
30
+
31
+
> [!IMPORTANT]
32
+
> This branch (the `main` branch) uses the native vector support in Azure SQL. If you want to use the classic T-SQL, switch to the `classic` branch.
23
33
24
34
## Download and import the Wikipedia Article with Vector Embeddings
0 commit comments