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: learn-pr/wwl-data-ai/get-started-generative-ai-azure-database-postgresql/includes/4-explore-azure-openai-schema.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ With the `azure_openai` schema, you can call the `create_embeddings()` function,
8
8
9
9
The function requires you to:
10
10
11
-
-specify the embedding deployment name,
12
-
-supply the input text or array of text,
13
-
-let the function return the embedding vector as `vector` or `vector[]`.
11
+
-Specify the embedding deployment name.
12
+
-Supply the input text or array of text.
13
+
-Let the function return the embedding vector as `vector` or `vector[]`.
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/get-started-generative-ai-azure-database-postgresql/includes/6-explore-semantic-operators.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,3 @@
1
-
# Work with semantic operators
2
-
3
1
The `azure_ai` extension includes a small set of semantic operators that allow you to work with generative AI models directly in SQL. These operators help you generate text, evaluate statements, extract structured information, and rank documents. Each operator calls a model you configured in the `azure_ai.settings` table.
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/get-started-generative-ai-azure-database-postgresql/includes/7-examine-azure-machine-learning-schema.md
+48-48Lines changed: 48 additions & 48 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,57 +44,57 @@ The following example shows the full flow for sending input to an Azure Machine
The result is returned as a `jsonb` value that contains the model’s output. You can extract fields from this result using standard PostgreSQL JSON functions.
The result is returned as a `jsonb` value that contains the model's output. You can extract fields from this result using standard PostgreSQL JSON functions.
75
75
76
76
1. Working with the output
77
77
78
-
For example, if the model returns an array of predicted values:
0 commit comments