Skip to content

Commit 8b9a708

Browse files
authored
Merge pull request #49100 from MScalopez/main
Fixing three minor errors in the Content
2 parents ac5b6bb + 8d49a3f commit 8b9a708

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

learn-pr/wwl-data-ai/extract-insights-using-azure-ai-language-azure-database-postgresq/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
description: Introduction
99
author: wwlpublish
1010
ms.author: calopez
11-
ms.date: 11/24/2024
11+
ms.date: 02/10/2025
1212
ms.topic: unit
1313
ms.collection:
1414
- wwl-ai-copilot

learn-pr/wwl-data-ai/extract-insights-using-azure-ai-language-azure-database-postgresq/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Next, authorize the Azure Database for PostgreSQL flexible server's `azure_ai` e
4242
select azure_ai.set_setting('azure_cognitive.endpoint','https://<endpoint>.cognitiveservices.azure.com');
4343
select azure_ai.set_setting('azure_cognitive.subscription_key', '<API Key>');
4444
-- the region setting is only required for the translate function
45-
select azure_ai.set_setting('azure_cognitive.region', '<API Key>');
45+
select azure_ai.set_setting('azure_cognitive.region', '');
4646
```
4747

4848
More information is available in the [Azure Cognitive Services documentation](/azure/postgresql/flexible-server/generative-ai-azure-cognitive#configure-azure_ai-extension-with-azure-cognitive-services).

learn-pr/wwl-data-ai/get-started-generative-ai-azure-database-postgresql/6-examine-azure-machine-learning-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
description: Examine the Azure Machine Learning schema
99
author: wwlpublish
1010
ms.author: calopez
11-
ms.date: 11/24/2024
11+
ms.date: 02/06/2025
1212
ms.topic: unit
1313
ms.collection:
1414
- wwl-ai-copilot

learn-pr/wwl-data-ai/get-started-generative-ai-azure-database-postgresql/includes/6-examine-azure-machine-learning-schema.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The `inference()` function expects the following input parameters:
1414
| --------- | ---- | ------- | ----------- |
1515
| input_data | `jsonb` || A JSON object containing the `input_data` object required for interacting with Azure Machine Learning models. |
1616
| deployment_name | `text` | `NULL::text` | (Optional) Name of the model deployment to target at the specified Azure Machine Learning endpoint. |
17-
| timeout_ms | `integer` | `NULL::integer`| The timeout... |
18-
| throw_on_error | `boolean` | `true` | desc... |
17+
| timeout_ms | `integer` | `NULL::integer`| Sets the maximum time (in milliseconds) to wait for an inference operation before it times out. |
18+
| throw_on_error | `boolean` | `true` | Determines whether to throw an error if the inference operation encounters an issue. |
1919
| max_attempts | `integer` | `1` | Number of times to retry the call to Azure OpenAI service in the event of a failure. |
2020
| retry_delay_ms | `integer` | `1000` | Amount of time, in milliseconds, to wait before attempting to retry calling the Azure OpenAI service endpoint. |
2121

learn-pr/wwl-data-ai/summarize-data-azure-ai-services-azure-database-postgresql/3-explore-abstractive-summarization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
description: Explore abstractive summarization
99
author: wwlpublish
1010
ms.author: calopez
11-
ms.date: 11/24/2024
11+
ms.date: 02/10/2025
1212
ms.topic: unit
1313
ms.collection:
1414
- wwl-ai-copilot

learn-pr/wwl-data-ai/summarize-data-azure-ai-services-azure-database-postgresql/includes/3-explore-abstractive-summarization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ Abstractive summarization returns the two generated sentences:
3737

3838
```sql
3939
{
40-
"The document describes a one-bedroom apartment located on the west side of Queen Anne Hill. The apartment, which is the bottom unit of a duplex, features an open floor plan, bamboo floors, a fully equipped kitchen, a queen-size bed, and a private deck with a BBQ. It is conveniently located near bus lines, historic Ballard, a grocery store, coffee shops, and various shops and restaurants."
40+
"The document describes a one-bedroom apartment located on the west side of Queen Anne Hill, featuring an open floor plan, bamboo floors, a fully equipped kitchen, a queen-size bed, and a private deck with a BBQ. It is conveniently located near bus lines, historic Ballard, a grocery store, coffee shops, and various shops and restaurants."
4141
}
4242
```

0 commit comments

Comments
 (0)