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: articles/postgresql/flexible-server/generative-ai-azure-cognitive.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Azure AI extension gives the ability to invoke the [Azure AI Language Services](
27
27
28
28
In the Language resource, under **Resource Management** > **Keys and Endpoint** you can find the endpoint, keys, and Location/Region for your language resource. Use the endpoint and key to enable `azure_ai` extension to invoke the model deployment. The Location/Region setting is only required for the translation function.
@@ -248,7 +248,7 @@ For more information, see Cognitive Services Compliance and Privacy notes at htt
248
248
249
249
[Named Entity Recognition (NER) feature in Azure AI](../../ai-services/language-service/named-entity-recognition/overview.md) can identify and categorize entities in unstructured text.
@@ -358,7 +358,7 @@ For more information, see Cognitive Services Compliance and Privacy notes at htt
358
358
359
359
[Document abstractive summarization](../../ai-services/language-service/summarization/overview.md) produces a summary that might not use the same words in the document but yet captures the main idea.
@@ -412,7 +412,7 @@ For more information, see Cognitive Services Compliance and Privacy notes at htt
412
412
413
413
[Document extractive summarization](../../ai-services/language-service/summarization/how-to/document-summarization.md) produces a summary extracting key sentences within the document.
Copy file name to clipboardExpand all lines: articles/postgresql/flexible-server/generative-ai-azure-machine-learning.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
@@ -29,7 +29,7 @@ Azure AI extension gives the ability to invoke any machine learning models deplo
29
29
30
30
In the Azure Machine Learning studio, under **Endpoints** > **Pick your endpoint** > **Consume** you can find the endpoint URI and Key for the online endpoint. Use these values to configure the `azure_ai` extension to use the online inferencing endpoint.
Scores the input data invoking an Azure Machine Learning model deployment on an [online endpoint](../../machine-learning/how-to-authenticate-online-endpoint.md).
In the Azure OpenAI resource, under **Resource Management** > **Keys and Endpoints** you can find the endpoint and the keys for your Azure OpenAI resource. To invoke the model deployment, enable the `azure_ai` extension using the endpoint and one of the keys.
Copy file name to clipboardExpand all lines: articles/postgresql/flexible-server/generative-ai-azure-overview.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Before you can enable `azure_ai` on your Azure Database for PostgreSQL flexible
26
26
27
27
Then you can install the extension, by connecting to your target database and running the [CREATE EXTENSION](https://www.postgresql.org/docs/current/static/sql-createextension.html) command. You need to repeat the command separately for every database you want the extension to be available in.
28
28
29
-
```postgresql
29
+
```sql
30
30
CREATE EXTENSION azure_ai;
31
31
```
32
32
@@ -58,7 +58,7 @@ The `azure_ai_settings_manager` role is by default granted to the `azure_pg_admi
58
58
59
59
Used to set configuration options.
60
60
61
-
```postgresql
61
+
```sql
62
62
azure_ai.set_setting(key TEXT, value TEXT)
63
63
```
64
64
@@ -80,7 +80,7 @@ Name of a configuration option. Valid values for the `key` are:
80
80
81
81
Used to obtain current values of configuration options.
82
82
83
-
```postgresql
83
+
```sql
84
84
azure_ai.get_setting(key TEXT)
85
85
```
86
86
@@ -100,7 +100,7 @@ Name of a configuration option. Valid values for the `key` are:
100
100
101
101
### `azure_ai.version`
102
102
103
-
```postgresql
103
+
```sql
104
104
azure_ai.version()
105
105
```
106
106
@@ -112,21 +112,21 @@ azure_ai.version()
112
112
113
113
#### Set the Endpoint and an API Key for Azure OpenAI
Copy file name to clipboardExpand all lines: articles/postgresql/flexible-server/generative-ai-recommendation-system.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Before you can enable `azure_ai` and `pgvector` on your Azure Database for Postg
33
33
34
34
Then you can install the extension, by connecting to your target database and running the [CREATE EXTENSION](https://www.postgresql.org/docs/current/static/sql-createextension.html) command. You need to repeat the command separately for every database you want the extension to be available in.
35
35
36
-
```postgresql
36
+
```sql
37
37
CREATE EXTENSION azure_ai;
38
38
CREATE EXTENSION pgvector;
39
39
```
@@ -42,7 +42,7 @@ CREATE EXTENSION pgvector;
42
42
43
43
In the Azure AI services under **Resource Management** > **Keys and Endpoints** you can find the endpoint and the keys for your Azure AI resource. Use the endpoint and one of the keys to enable `azure_ai` extension to invoke the model deployment.
0 commit comments