Skip to content

Commit 5592763

Browse files
authored
Fix typo in AI_GENERATE_EMBEDDING function
1 parent e1f7e3d commit 5592763

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/t-sql/functions/vector-search-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ ORDER BY r.distance;
129129
The following example finds the 10 most similar articles to the `Pink Floyd music style` in the `wikipedia_articles_embeddings` table.
130130

131131
```sql
132-
DECLARE @qv VECTOR(1536) = AI_GENERATE_EMBEDDING(N'Pink Floyd music style' USE MODEL Ada2Embeddings);
132+
DECLARE @qv VECTOR(1536) = AI_GENERATE_EMBEDDINGS(N'Pink Floyd music style' USE MODEL Ada2Embeddings);
133133

134134
SELECT TOP (10) s.id,
135135
s.title,

0 commit comments

Comments
 (0)