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
thanks to columnstore, even on small SKU, the performance can be pretty fast, well within the sub-second goal.
100
+
thanks to columnstore, even on small SKU, the performance can be pretty fast, well within the sub-second goal. If you need to use other distance metric, you can find here a description of how to implement the most common one in pure T-SQL: [How to calculate common vectors distances in T-SQL](distance-calculations-in-tsql.md)
101
101
102
102
## Encapsulating logic to retrieve embeddings
103
103
@@ -110,7 +110,7 @@ The described process can be wrapped into stored procedures to make it easy to r
110
110
111
111
The script `05-find-similar-articles.sql` uses the created stored procedure and the process explained above to find similar articles to the provided text.
112
112
113
-
## Encapsulating logic to do similarity saerch
113
+
## Encapsulating logic to do similarity search
114
114
115
115
To make it even easier to use, the script `06-sample-function.sql` shows a sample function that can be used to find similar articles by just providing the text, as demonstrated in script `07-sample-function-usage` with the following example:
116
116
@@ -142,4 +142,4 @@ A vector is nothing more than a list numbers (in this scope) and list of numbers
142
142
143
143
## Community Samples
144
144
145
-
[Use a Poor Developers Vector Database to Implement The RAG Pattern](https://blazorhelpwebsite.com/ViewBlogPost/5066)
145
+
[Implement The RAG Pattern](https://blazorhelpwebsite.com/ViewBlogPost/5066)
0 commit comments