Skip to content

Commit ae487ec

Browse files
committed
Merge branch 'main' into release-ai-studio-rebrand
2 parents c60b544 + 6b1a585 commit ae487ec

36 files changed

+88
-78
lines changed

articles/ai-services/agents/how-to/tools/file-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The maximum file size is 512 MB. Each file should contain no more than 5,000,000
8787

8888
We highly recommend that you ensure all files in a vector_store are fully processed before you create a run. This ensures that all the data in your vector store is searchable. You can check for vector store readiness by using the polling helpers in the SDKs, or by manually polling the vector store object to ensure the status is completed.
8989

90-
As a fallback, there's a 60-second maximum wait in the run object when the thread's vector store contains files that are still being processed. This is to ensure that any files your users upload in a thread a fully searchable before the run proceeds. This fallback wait does not apply to the agent's vector store.
90+
As a fallback, there's a 60-second maximum wait in the run object when the thread's vector store contains files that are still being processed. This is to ensure that any files your users upload in a thread are fully searchable before the run proceeds. This fallback wait does not apply to the agent's vector store.
9191

9292
## Add file search to an agent using the Azure AI Foundry portal
9393

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,19 @@ Get the connection ID of the Azure AI Search connection in the project. You can
8585

8686
```python
8787
# AI Search resource connection ID
88-
# This code prints out the connection ID of all the Azure AI Search connections in the project
89-
# If you have more than one AI search connection, make sure to select the correct one that contains the index you want to use.
90-
conn_list = project_client.connections.list()
88+
# This code looks for the AI Search Connection ID and saves it as variable conn_id
89+
90+
# If you have more than one AI search connection, try to establish the value in your .env file.
91+
# Extract the connection list.
92+
conn_list = project_client.connections._list_connections()["value"]
9193
conn_id = ""
94+
95+
# Search in the metadata field of each connection in the list for the azure_ai_search type and get the id value to establish the variable
9296
for conn in conn_list:
93-
if conn.connection_type == "AZURE_AI_SEARCH":
94-
print(f"Connection ID: {conn.id}")
97+
metadata = conn["properties"].get("metadata", {})
98+
if metadata.get("type", "").upper() == "AZURE_AI_SEARCH":
99+
conn_id = conn["id"]
100+
break
95101
```
96102
# [C#](#tab/csharp)
97103
```csharp
@@ -429,4 +435,4 @@ curl $AZURE_AI_AGENTS_ENDPOINT/threads/thread_abc123/messages?api-version=2024-1
429435
-H "Authorization: Bearer $AZURE_AI_AGENTS_TOKEN"
430436
```
431437
432-
---
438+
---

articles/ai-services/containers/disconnected-container-faq.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
ms.custom:
1111
- ignite-2023
1212
ms.topic: faq
13-
ms.date: 07/26/2024
13+
ms.date: 02/27/2025
1414
ms.author: aahi
1515
title: FAQ for Azure AI services disconnected containers
1616
summary: |
@@ -43,11 +43,11 @@ sections:
4343
Fill out and submit the [request form](https://aka.ms/csdisconnectedcontainers) to request access to the container. Access is limited to customers that meet the following requirements:
4444
4545
* Your organization must have an enterprise agreement or an equivalent agreement and should be identified as strategic customer or partner with Microsoft.
46-
* Valid business scenario/use case - Disconnected containers are expected to run fully offline hence, your use cases must meet one of below or similar requirements:
46+
* Valid business scenario/use case - Disconnected containers are expected to run fully offline. Your use cases must meet one of below or similar requirements:
4747
* Environment or devices with zero connectivity to internet.
4848
* Remote location that occasionally has internet access.
4949
* Organization under strict regulation of not sending any kind of data back to cloud.
50-
* Application completed as instructed - Please pay close attention to guidance provided throughout the application to ensure you provide all the necessary information required for approval.
50+
* Application completed as instructed - pay close attention to guidance provided throughout the application to ensure you provide all the necessary information required for approval.
5151
- question: What if my use case can't satisfy the requirements listed above?
5252
answer: |
5353
If your use case can't satisfy above requirements but you're interested in running containers on premises, you might be able to use [connected containers](../cognitive-services-container-support.md).

articles/ai-services/speech-service/fast-transcription-create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: eric-urban
77
ms.author: eur
88
ms.service: azure-ai-speech
99
ms.topic: how-to
10-
ms.date: 11/12/2024
10+
ms.date: 2/28/2025
1111
# Customer intent: As a user who implements audio transcription, I want create transcriptions as quickly as possible.
1212
---
1313

@@ -24,7 +24,7 @@ Unlike the batch transcription API, fast transcription API only produces transcr
2424

2525
- An Azure AI Speech resource in one of the regions where the fast transcription API is available. The supported regions are: **Australia East**, **Brazil South**, **Central India**, **East US**, **East US 2**, **French Central**, **Japan East**, **North Central US**, **North Europe**, **South Central US**, **Southeast Asia**, **Sweden Central**, **UK South**, **West Europe**, **West US**, **West US 2**, **West US 3**. For more information about regions supported for other Speech service features, see [Speech service regions](./regions.md).
2626

27-
- An audio file (less than 2 hours long and less than 200 MB in size) in one of the formats and codecs supported by the batch transcription API. For more information about supported audio formats, see [supported audio formats](./batch-transcription-audio-data.md#supported-audio-formats-and-codecs).
27+
- An audio file (less than 2 hours long and less than 200 MB in size) in one of the formats and codecs supported by the batch transcription API: WAV, MP3, OPUS/OGG, FLAC, WMA, AAC, ALAW in WAV container, MULAW in WAV container, AMR, WebM, M4A, and SPEEX. For more information about supported audio formats, see [supported audio formats](./batch-transcription-audio-data.md#supported-audio-formats-and-codecs).
2828

2929
## Use the fast transcription API
3030

articles/ai-services/use-key-vault.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: aahi
66
ms.service: azure-ai-services
77
ms.custom: devx-track-extended-java, devx-track-js, devx-track-python
88
ms.topic: how-to
9-
ms.date: 8/11/2024
9+
ms.date: 02/27/2025
1010
zone_pivot_groups: programming-languages-set-twenty-eight
1111
---
1212

@@ -89,7 +89,7 @@ Repeat these steps to generate a secret for each required resource credential. F
8989

9090
|Name | Value |
9191
|---------|---------|
92-
|Upload options | Manual |
92+
|Upload options | Generate |
9393
|Name | A secret name for your key or endpoint. For example: "CognitiveServicesKey" or "CognitiveServicesEndpoint" |
9494
|Value | Your Azure AI services resource key or endpoint. |
9595

articles/search/cognitive-search-attach-cognitive-services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Attach Azure AI services to a skillset
33
titleSuffix: Azure AI Search
44
description: Learn how to attach an Azure AI services resource to an AI enrichment pipeline in Azure AI Search.
5-
author: HeidiSteen
6-
ms.author: heidist
5+
author: eric-urban
6+
ms.author: eur
77
ms.service: azure-ai-search
88
ms.custom:
99
- ignite-2023

articles/search/reference-stopwords.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ titleSuffix: Azure AI Search
44
description: Reference documentation containing the stopwords list of the Microsoft language analyzers.
55

66
manager: nitinme
7-
author: HeidiSteen
8-
ms.author: heidist
7+
author: haileytap
8+
ms.author: haileytapia
99

1010
ms.service: azure-ai-search
1111
ms.custom:

articles/search/resource-demo-sites.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
title: Demo sites for search features
33
titleSuffix: Azure AI Search
44
description: This page provides links to demo sites that are built on Azure AI Search. Try a web app to see how search performs.
5-
author: HeidiSteen
5+
66
manager: nitinme
7-
ms.author: heidist
7+
author: haileytap
8+
ms.author: haileytapia
89
ms.service: azure-ai-search
910
ms.custom:
1011
- ignite-2023

articles/search/resource-partners-knowledge-mining.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
title: Microsoft partners
33
titleSuffix: Azure AI Search
44
description: Learn about end-to-end solutions offered by Microsoft partners that include Azure AI Search.
5-
author: HeidiSteen
5+
66
manager: nitinme
7-
ms.author: heidist
7+
author: haileytap
8+
ms.author: haileytapia
89
ms.service: azure-ai-search
910
ms.custom:
1011
- ignite-2023

articles/search/resource-tools.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Productivity tools
33
titleSuffix: Azure AI Search
44
description: Use existing code samples or build your own tools for working with a search index in Azure AI Search.
5-
author: HeidiSteen
6-
manager: nitinme
7-
ms.author: heidist
5+
6+
author: haileytap
7+
ms.author: haileytapia
88
ms.service: azure-ai-search
99
ms.topic: conceptual
1010
ms.date: 02/25/2025

0 commit comments

Comments
 (0)