Skip to content

Commit 9c5e8b4

Browse files
Merge pull request #6229 from MicrosoftDocs/main
Auto Publish – main to live - 2025-07-25 22:04 UTC
2 parents 24f9c9b + da14bce commit 9c5e8b4

File tree

128 files changed

+760
-301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+760
-301
lines changed

articles/ai-foundry/agents/how-to/tools/deep-research-samples.md

Lines changed: 394 additions & 19 deletions
Large diffs are not rendered by default.

articles/ai-foundry/agents/how-to/tools/deep-research.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The deep research tool is a **code-only release** and available for use using th
2424

2525
|Azure AI foundry portal | Python SDK | C# SDK | JavaScript SDK | REST API |Basic agent setup | Standard agent setup |
2626
|---------|---------|---------|---------|---------|---------|---------|
27-
| | ✔️ | | | | ✔️ | ✔️ |
27+
| | ✔️ | ✔️ | ✔️ | | ✔️ | ✔️ |
2828

2929
> [!NOTE]
3030
> Once the agent is running, some elements of the agent and thread runs can show up in the Azure AI Foundry user interface.
91.5 KB
Loading

articles/ai-foundry/concepts/concept-synthetic-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to generate a synthetic dataset in Azure AI Foundry porta
55
manager: scottpolly
66
ms.service: azure-ai-foundry
77
ms.topic: how-to
8-
ms.date: 05/20/2025
8+
ms.date: 07/25/2025
99
ms.reviewer: vkann
1010
reviewer: anshirga
1111
ms.author: ssalgado

articles/ai-foundry/openai/concepts/models.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about the different model capabilities that are available wit
55
author: mrbullwinkle #ChrisHMSFT
66
ms.author: mbullwin #chrhoder#
77
manager: nitinme
8-
ms.date: 06/25/2025
8+
ms.date: 07/24/2025
99
ms.service: azure-ai-openai
1010
ms.topic: conceptual
1111
ms.custom:
@@ -46,6 +46,21 @@ Azure OpenAI is powered by a diverse set of models with different capabilities a
4646

4747
### Capabilities
4848

49+
> [!IMPORTANT]
50+
> There is a known issue impacting all GPT 4.1 series models where large tool/function call definitions exceeding 300,000 tokens will result in failures even though the 1 million token context limit of the models has not been reached.
51+
>
52+
> The errors can vary based on API call as well as underlying payload characteristics.
53+
>
54+
> **Chat Completions API error messages**:
55+
>
56+
> - `Error code: 400 - {'error': {'message': "This model's maximum context length is 300000 tokens. However, your messages resulted in 350564 tokens (100 in the messages, 350464 in the functions). Please reduce the length of the messages or functions.", 'type': 'invalid_request_error', 'param': 'messages', 'code': 'context_length_exceeded'}}`
57+
>
58+
> - `Error code: 400 - {'error': {'message': "Invalid 'tools[0].function.description': string too long. Expected a string with maximum length 1048576, but got a string with length 2778531 instead.", 'type': 'invalid_request_error', 'param': 'tools[0].function.description', 'code': 'string_above_max_length'}}`
59+
>
60+
> **Responses API error message:**
61+
>
62+
> - `Error code: 500 - {'error': {'message': 'The server had an error processing your request. Sorry about that! You can retry your request, or contact us through an Azure support request at: https://go.microsoft.com/fwlink/?linkid=2213926 if you keep seeing this error. (Please include the request ID d2008353-291d-428f-adc1-defb5d9fb109 in your email.)', 'type': 'server_error', 'param': None, 'code': None}}`
63+
4964
| Model ID | Description | Context Window | Max Output Tokens | Training Data (up to) |
5065
| --- | :--- |:--- |:---|:---: |
5166
| `gpt-4.1` (2025-04-14) | - Text & image input <br> - Text output <br> - Chat completions API <br>- Responses API <br> - Streaming <br> - Function calling <br> Structured outputs (chat completions) | - 1,047,576 <br> - 128,000 (provisioned managed deployments) <br> - 300,000 (batch deployments) | 32,768 | May 31, 2024 |

articles/ai-foundry/openai/how-to/assistant-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ In the following example, replace `output` with the output of the function you w
187187
```console
188188
curl https://YOUR_RESOURCE_NAME.openai.azure.com/openai/threads/thread_abc123/runs/run_123/submit_tool_outputs?api-version=2024-07-01-preview \
189189
-H "Content-Type: application/json" \
190-
-H "api-key: 851c6e0b83744d8c8fc2a07eab098376" \
190+
-H "api-key: $AZURE_OPENAI_API_KEY" \
191191
-d '{
192192
"tool_outputs": [{
193193
"tool_call_id": "call_123",

articles/ai-services/personalizer/concept-auto-optimization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The exact times and days when Auto-Optimize runs is determined by the Personaliz
6868
Personalizer uses these reward estimations to decide whether to change the current Learning Settings for others. Each estimation is a distribution curve, with upper and lower 95% confidence bounds. Personalizer will only apply new Learning Settings if:
6969
* They showed higher average rewards in the evaluation period, AND
7070
* They have a lower bound of the 95% confidence interval, that is *higher* than the lower bound of the 95% confidence interval of the online Learning Settings.
71-
This criteria to maximize the reward improvement, while trying to eliminate the probability of future rewards lost is managed by Personalizer and draws from research in [Seldonian algorithms](https://aisafety.cs.umass.edu/overview.html) and AI safety.
71+
This criteria to maximize the reward improvement, while trying to eliminate the probability of future rewards lost is managed by Personalizer and draws from research in [Seldonian algorithms](https://aisafety.cs.umass.edu/index.html) and AI safety.
7272

7373
#### Limitations of Auto-Optimize
7474

@@ -81,4 +81,4 @@ Automatic Optimization Preview is unavailable for Personalizer loops that have e
8181
* [Offline evaluations](concepts-offline-evaluation.md)
8282
* [Learning Policy and Settings](concept-active-learning.md)
8383
* [How To Analyze Personalizer with an Offline Evaluation](how-to-offline-evaluation.md)
84-
* [Research in AI Safety](https://aisafety.cs.umass.edu/overview.html)
84+
* [Research in AI Safety](https://aisafety.cs.umass.edu/index.html)

articles/ai-services/personalizer/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The following preview features were released at the Build 2019 Conference:
6767

6868
### 2019 Build videos
6969

70-
* [Deliver the Right Experiences & Content like Xbox with Azure AI Personalizer](https://azure.microsoft.com/resources/videos/build-2019-deliver-the-right-experiences-and-content-with-cognitive-services-personalizer/)
70+
* [Deliver the Right Experiences & Content like Xbox with Azure AI Personalizer](https://www.youtube.com/watch?v=agaJr25Y8Ek)
7171

7272
## Service updates
7373

articles/machine-learning/concept-causal-inference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ services: machine-learning
66
ms.service: azure-machine-learning
77
ms.subservice: responsible-ai
88
ms.topic: how-to
9-
ms.author: scottpolly
10-
author: s-polly
9+
ms.author: lagayhar
10+
author: lgayhardt
1111
ms.reviewer: mesameki
1212
ms.date: 03/17/2025
1313
ms.custom: responsible-ml

articles/machine-learning/concept-component.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description: Use Azure Machine Learning components to build machine learning pip
55
services: machine-learning
66
ms.service: azure-machine-learning
77
ms.subservice: core
8-
ms.author: scottpolly
9-
author: s-polly
8+
ms.author: lagayhar
9+
author: lgayhardt
1010
ms.reviewer: keli19
1111
ms.date: 09/30/2024
1212
ms.topic: concept-article

0 commit comments

Comments
 (0)