Skip to content

Commit e9982a7

Browse files
authored
Merge pull request #10270 from alexhanms/patch-2
Fix typo in AI_GENERATE_EMBEDDING function
2 parents e1f7e3d + 5592763 commit e9982a7

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)