We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1f7e3d + 5592763 commit e9982a7Copy full SHA for e9982a7
1 file changed
docs/t-sql/functions/vector-search-transact-sql.md
@@ -129,7 +129,7 @@ ORDER BY r.distance;
129
The following example finds the 10 most similar articles to the `Pink Floyd music style` in the `wikipedia_articles_embeddings` table.
130
131
```sql
132
-DECLARE @qv VECTOR(1536) = AI_GENERATE_EMBEDDING(N'Pink Floyd music style' USE MODEL Ada2Embeddings);
+DECLARE @qv VECTOR(1536) = AI_GENERATE_EMBEDDINGS(N'Pink Floyd music style' USE MODEL Ada2Embeddings);
133
134
SELECT TOP (10) s.id,
135
s.title,
0 commit comments