Skip to content

Commit fc86707

Browse files
committed
Merge branch 'main' of github.com:MicrosoftDocs/azure-ai-docs-pr into sdg-project-upgrade
2 parents 6a3f395 + e56ae35 commit fc86707

File tree

395 files changed

+5655
-3586
lines changed

Some content is hidden

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

395 files changed

+5655
-3586
lines changed

.openpublishing.redirection.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,26 @@
489489
"source_path": "articles/ai-foundry/model-inference/index.yml",
490490
"redirect_url": "../foundry-models/index",
491491
"redirect_document_id": false
492+
},
493+
{
494+
"source_path": "articles/machine-learning/concept-package-models.md",
495+
"redirect_url": "/azure/machine-learning/concept-endpoints",
496+
"redirect_document_id": false
497+
},
498+
{
499+
"source_path": "articles/machine-learning/how-to-package-models-moe.md",
500+
"redirect_url": "/azure/machine-learning/concept-endpoints",
501+
"redirect_document_id": false
502+
},
503+
{
504+
"source_path": "articles/machine-learning/how-to-package-models-app-service.md",
505+
"redirect_url": "/azure/machine-learning/concept-endpoints",
506+
"redirect_document_id": false
507+
},
508+
{
509+
"source_path": "articles/machine-learning/how-to-package-models.md",
510+
"redirect_url": "/azure/machine-learning/concept-endpoints",
511+
"redirect_document_id": false
492512
}
493513
]
494514
}

articles/ai-foundry/agents/concepts/threads-runs-messages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ A custom AI that uses AI models in conjunction with tools.
3434

3535
## Threads
3636

37-
Threads are conversation sessions between an agent and a user. They store messages and automatically handle truncation to fit content into a model’s context. When you create a thread, you can append new messages to it as users respond.
37+
Threads are conversation sessions between an agent and a user. They store messages and automatically handle truncation to fit content into a model’s context. When you create a thread, you can append new messages (maximum of 100,000 per thread) to it as users respond.
3838

3939
## Messages
4040

41-
Messages are the individual pieces of communication within a thread. They can be created by either the agent or the user and can include text, or other files. Messages are stored as a list within the thread, allowing for a structured and organized conversation flow.
41+
Messages are the individual pieces of communication within a thread. They can be created by either the agent or the user and can include text, or other files. Messages are stored as a list within the thread, allowing for a structured and organized conversation flow. You can attach up to 100,000 messages to a single thread.
4242

4343
## Runs
4444

articles/ai-foundry/agents/how-to/connected-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ To create a multi-agent setup, follow these steps:
230230
```python
231231
import os
232232
from azure.ai.projects import AIProjectClient
233-
from azure.ai.projects.models import ConnectedAgentTool, MessageRole
233+
from azure.ai.agents.models import ConnectedAgentTool, MessageRole
234234
from azure.identity import DefaultAzureCredential
235235

236236

articles/ai-foundry/agents/how-to/metrics.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ ms.service: azure-ai-agent-service
1515

1616
Monitoring is available for agents in a [standard agent setup](../concepts/standard-agent-setup.md).
1717

18+
[!INCLUDE [Feature preview](../../openai/includes/preview-feature.md)]
19+
1820
> [!IMPORTANT]
1921
> Monitoring support is currently limited to Azure AI Foundry hubs. Azure AI Foundry projects are not supported.
2022
@@ -94,4 +96,4 @@ You can set alerts for any metric listed in the [monitoring data reference](../r
9496
## Related content
9597

9698
- See [Monitoring data reference](../reference/monitor-service.md) for a reference of the metrics and other important values created for Azure AI Foundry Agent Service.
97-
- See [Monitoring Azure resources with Azure Monitor](/azure/azure-monitor/essentials/monitor-azure-resource) for general details on monitoring Azure resources.
99+
- See [Monitoring Azure resources with Azure Monitor](/azure/azure-monitor/essentials/monitor-azure-resource) for general details on monitoring Azure resources.

articles/ai-foundry/agents/how-to/tools/azure-functions.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ ms.custom: azure-ai-agents
1414

1515
# Use Azure Functions with Azure AI Foundry Agent Service
1616

17-
The Azure AI Foundry Agent Service integrates with Azure Functions, enabling you to create intelligent, event-driven applications with minimal overhead. This combination allows AI-driven workflows to leverage the scalability and flexibility of serverless computing, making it easier to build and deploy solutions that respond to real-time events or complex workflows.
18-
19-
Azure Functions provide support for triggers and bindings, which simplify how your AI Agents interact with external systems and services. Triggers determine when a function executes—such as an HTTP request, message from a queue, or a file upload to Azure Blob Storage and allows agents to act dynamically based on incoming events.
20-
17+
The Azure AI Foundry Agent Service integrates with Azure Functions, enabling you to create intelligent, event-driven applications with minimal overhead. This combination allows AI-driven workflows to leverage the scalability and flexibility of serverless computing, making it easier to build and deploy solutions that respond to real-time events or complex workflows.
18+
19+
Currently, direct integration with Azure Functions is only supported for functions triggered by Azure Storage Queues. Other trigger types, such as HTTP or Blob Storage, are not natively supported at this time.
20+
21+
Azure Functions provide support for triggers and bindings, which simplify how your AI Agents interact with external systems and services. Triggers determine when a function executes—such as an HTTP request, message from a queue, or a file upload to Azure Blob Storage—and allow agents to act dynamically based on incoming events.
22+
23+
For HTTP-triggered Azure Functions, integration is possible by describing the function through an OpenAPI specification and registering it as a callable tool in the agent configuration. Alternatively, you can implement a queue-based wrapper function that receives messages from the agent and internally invokes the HTTP logic, enabling the use of the existing queue-based integration.
24+
2125
Meanwhile, bindings facilitate streamlined connections to input or output data sources, such as databases or APIs, without requiring extensive boilerplate code. For instance, you can configure a trigger to execute an Azure Function whenever a customer message is received in a chatbot and use output bindings to send a response via the Azure AI Agent.
2226

2327
### Supported models

0 commit comments

Comments
 (0)