Skip to content

Commit a1ea100

Browse files
authored
Merge pull request #2411 from MicrosoftDocs/main
1/21/2025 PM Publish
2 parents 11c4da3 + e14999c commit a1ea100

File tree

9 files changed

+20
-21
lines changed

9 files changed

+20
-21
lines changed

articles/ai-services/agents/includes/azure-search/code-examples.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Get the connection ID of the Azure AI Search connection in the project. You can
6969
conn_list = project_client.connections.list()
7070
conn_id = ""
7171
for conn in conn_list:
72-
if conn.connection_type == "CognitiveSearch":
72+
if conn.connection_type == "AZURE_AI_SEARCH":
7373
print(f"Connection ID: {conn.id}")
7474
```
7575
# [C#](#tab/csharp)
@@ -97,8 +97,7 @@ conn_id = "/subscriptions/<your-subscription-id>/resourceGroups/<your-resource-
9797

9898
# Initialize agent AI search tool and add the search index connection ID and index name
9999
# TO DO: replace <your-index-name> with the name of the index you want to use
100-
ai_search = AzureAISearchTool()
101-
ai_search.add_index(conn_id, "<your-index-name>")
100+
ai_search = AzureAISearchTool(index_connection_id=conn_id, index_name="<your-index-name>")
102101
```
103102
# [C#](#tab/csharp)
104103
```csharp

articles/ai-services/containers/azure-container-instance-recipe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.custom: devx-track-azurecli
99
ms.service: azure-ai-services
1010
ms.topic: how-to
11-
ms.date: 02/22/2024
11+
ms.date: 01/21/2025
1212
ms.author: aahi
1313
# https://github.com/Azure/cognitiveservices-aci
1414
#Customer intent: As a potential customer, I want to know more about how Azure AI services provides and supports Docker containers for each service.
@@ -24,7 +24,7 @@ The recipe works with any Azure AI services container. The Azure AI services res
2424

2525
* An Azure resource for the Azure AI service you're using.
2626
* Azure AI service resource **endpoint URL** - review your specific service's "How to install" for the container, to find where the endpoint URL is from within the Azure portal, and what a correct example of the URL looks like. The exact format can change from service to service.
27-
* Azure AI service resource **key** - the keys are on the **Keys** page for the Azure resource. You only need one of the two keys. The key is a string of 32 alpha-numeric characters.
27+
* Azure AI service resource **key** - the keys are on the **Keys** page for the Azure resource. You only need one of the two keys. The key is a string of 84 alpha-numeric characters.
2828

2929
* A single Azure AI services container on your local host (your computer). Make sure you can:
3030
* Pull down the image with a `docker pull` command.

articles/ai-services/containers/includes/create-container-instances-resource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ms.author: aahi
3838

3939
| Key | Value |
4040
|--|--|
41-
|`ApiKey`|Copied from the **Keys and endpoint** page of the resource. It is a 32 alphanumeric-character string with no spaces or dashes, `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`.|
41+
|`ApiKey`|Copied from the **Keys and endpoint** page of the resource. It is a 84 alphanumeric-character string with no spaces or dashes, `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`.|
4242
|`Billing`| Your endpoint URL copied from the **Keys and endpoint** page of the resource.|
4343
|`Eula`|`accept`|
4444

articles/ai-services/openai/includes/model-matrix/standard-audio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ ms.date: 10/25/2024
1818
| swedencentral ||||
1919
| switzerlandnorth | - | - ||
2020
| uaenorth | - | - ||
21-
| westeurope | - | - ||
21+
| westeurope | - | - ||

articles/ai-services/openai/includes/model-matrix/standard-chat-completions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ ms.date: 10/25/2024
1313
|:-----------------|:------------------------------:|:---------------------------:|:--------------------------:|:--------------------------:|:-------------------------------:|:-------------------:|:---------------------------:|:---------------------------:|:-----------------------------:|:-------------------------------:|:-----------------------:|:--------------------------:|:--------------------------:|:--------------------------:|:--------------------------:|:------------------------------:|
1414
| australiaeast | - | - | - | - | - ||| - || - || - |||||
1515
| canadaeast | - | - | - | - | - ||| - | - | - || - |||||
16-
| eastus |||||| - | - || - || - ||| - |||
17-
| eastus2 |||||| - || - | - || - | - || - |||
16+
| eastus |||||| | - || - || - ||| - |||
17+
| eastus2 |||||| || - | - || - | - || - |||
1818
| francecentral | - | - | - | - | - ||| - | - | - ||||| - ||
1919
| japaneast | - | - | - | - | - | - | - | - || - | - | - || - |||
20-
| northcentralus |||||| - | - || - || - | - || - |||
20+
| northcentralus |||||| | - || - || - | - || - |||
2121
| norwayeast | - | - | - | - | - | - || - | - | - | - | - | - | - | - | - |
2222
| southcentralus |||||| - | - || - || - || - | - || - |
2323
| southindia | - | - | - | - | - | - || - | - | - | - | - | - ||| - |
@@ -26,4 +26,4 @@ ms.date: 10/25/2024
2626
| uksouth | - | - | - | - | - | - ||| - | - | - ||||||
2727
| westeurope | - | - | - | - | - | - | - | - | - | - | - || - | - | - | - |
2828
| westus |||||| - || - ||| - | - | - ||| - |
29-
| westus3 |||||| - || - | - || - | - | - | - || - |
29+
| westus3 |||||| - || - | - || - | - | - | - || - |

0 commit comments

Comments
 (0)