You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/how-to/tools/azure-functions-samples.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Azure AI Agents supports function calling, which allows you to describe the stru
23
23
* A prepared environment. See the [overview](azure-functions.md) article for details.
24
24
25
25
> [!NOTE]
26
-
> You must have a [A deployed agent with the standard setup](/azure/ai-services/agents/ai-services/agents/environment-setupchoose-your-setup). The basic agent setup is not supported.
26
+
> You must have a [A deployed agent with the standard setup](../../environment-setup.md#choose-your-setup). The basic agent setup is not supported.
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/how-to/tools/bing-code-samples.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,11 @@ Use this article to find step-by-step instructions and code samples for Groundin
19
19
20
20
## Prerequisites
21
21
22
-
* A [connected Grounding with Bing Search resource](/azure/ai-services/agents/ai-services/agents/how-to/tools/bing-groundingsetup).
22
+
* A [connected Grounding with Bing Search resource](./bing-grounding.md#setup).
23
23
* Your connection ID needs to be in this format: `/subscriptions/<subscription_id>/resourceGroups/<resource_group_name>/providers/Microsoft.CognitiveServices/accounts/<ai_service_name>/projects/<project_name>/connections/<connection_name>`
24
24
25
25
> [!IMPORTANT]
26
-
> There are requirements for displaying Grounding with Bing Search results. See the [overview article](/azure/ai-services/agents/ai-services/agents/how-to/tools/bing-groundinghow-to-display-grounding-with-bing-search-results) for details.
26
+
> There are requirements for displaying Grounding with Bing Search results. See the [overview article](./bing-grounding.md#how-to-display-grounding-with-bing-search-results) for details.
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/how-to/tools/openapi-spec-samples.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Use this article to find step-by-step instructions and code samples for using Op
35
35
36
36
1. Select **Next** and select your authentication method. Choose `connection` for `API key`.
37
37
1. If you choose `connection`, you need to select the custom keys connection you have created before.
38
-
1. If you choose `managed identity`, you need to input the audience to get your token. An example of an audience would be `https://cognitiveservices.azure.com/` to connect to Azure AI Services. Make sure you have already set up authentication and role assignment (as described in the [section](/azure/ai-services/agents/ai-services/agents/how-to/tools/openapi-specauthenticating-with-managed-identity-microsoft-entra-id) above).
38
+
1. If you choose `managed identity`, you need to input the audience to get your token. An example of an audience would be `https://cognitiveservices.azure.com/` to connect to Azure AI Services. Make sure you have already set up authentication and role assignment (as described in the [section](./openapi-spec.md#authenticating-with-managed-identity-microsoft-entra-id) above).
39
39
40
40
1. Copy and paste your OpenAPI specification in the text box.
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/how-to/triggers.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,13 +60,13 @@ Start by adding the Azure AI Foundry Agent service connectors to your workflow.
60
60
61
61
1. Depending on your use-case, choose the actions you need.
62
62
63
-
If you want to create a new [thread](/azure/ai-services/agents/ai-services/agents/concepts/threads-runs-messagesthreads) for each new event of your trigger, add the following in sequence:
63
+
If you want to create a new [thread](./concepts/threads-runs-messages/md#threads) for each new event of your trigger, add the following in sequence:
64
64
1. Create thread
65
65
1. Create run
66
66
1. Get run
67
67
1. List messages
68
68
69
-
If you want to create a new [run](/azure/ai-services/agents/ai-services/agents/concepts/threads-runs-messagesruns) in the same thread for each new event, add the following in sequence:
69
+
If you want to create a new [run](./concepts/threads-runs-messages.md#runs) in the same thread for each new event, add the following in sequence:
70
70
71
71
1. Create run
72
72
1. Get run
@@ -91,7 +91,7 @@ The **List Agent** connector only lists all the agents you have in your AI proje
91
91
92
92
## Configure the "create thread" connector
93
93
94
-
The **create thread** connector creates a new [thread](/azure/ai-services/agents/ai-services/agents/concepts/threads-runs-messagesthreads), which is a conversation session between an Agent and a user. Threads store [messages](/azure/ai-services/agents/ai-services/agents/concepts/threads-runs-messagesmessages) and automatically handle truncation to fit content into a model's context. You can configure the **create thread** connector with the following:
94
+
The **create thread** connector creates a new [thread](./concepts/threads-runs-messages.md#threads), which is a conversation session between an Agent and a user. Threads store [messages](./concepts/threads-runs-messages.md#messages) and automatically handle truncation to fit content into a model's context. You can configure the **create thread** connector with the following:
95
95
96
96
**messages (optional)**: You can add the message you want the AI agent to respond to. Add the role as **user** for the message you want the agent to respond to. It can be the event payload from the trigger, for example a form response field. It can also be a constant message, for example always triggering with the phrase "*what is the latest AI news this week?*"
97
97
@@ -120,7 +120,7 @@ The **create thread** connector creates a new [thread](/azure/ai-services/agents
120
120
121
121
## Configure the "create run" connector
122
122
123
-
The **create run** connector creates a new [run](/azure/ai-services/agents/ai-services/agents/concepts/threads-runs-messagesruns), which is an activation of an Agent to begin running based on the contents of the thread. The agent uses its configuration (such as tool resources) and the thread's messages to perform tasks by calling models and tools. As part of a run, the agent appends messages to the thread.
123
+
The **create run** connector creates a new [run](./concepts/threads-runs-messages.md#runs), which is an activation of an Agent to begin running based on the contents of the thread. The agent uses its configuration (such as tool resources) and the thread's messages to perform tasks by calling models and tools. As part of a run, the agent appends messages to the thread.
124
124
125
125
To configure the **create run** connector, click on it and provide the following information:
Copy file name to clipboardExpand all lines: articles/ai-foundry/agents/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ Azure AI Foundry Agent Service provides a production-ready foundation for deploy
99
99
100
100
| Capability | Azure AI Foundry Agent Service |
101
101
|------------|--------------------------------|
102
-
|**1. Visibility into conversations**| Full access to structured [threads](/azure/ai-services/agents/ai-services/agents/concepts/threads-runs-messagesthreads), including both user↔agent and agent↔agent messages. Ideal for UIs, debugging, and training |
102
+
|**1. Visibility into conversations**| Full access to structured [threads](./concepts/threads-runs-messages.md#threads), including both user↔agent and agent↔agent messages. Ideal for UIs, debugging, and training |
103
103
|**2. Multi-agent coordination**| Built-in support for agent-to-agent messaging. |
104
104
|**3. Tool orchestration**| Server-side execution and retry of [tool calls](how-to\tools\overview.md) with structured logging. No manual orchestration required. |
105
105
|**4. Trust and safety**| Integrated [content filters](/azure/ai-services/agents/ai-services/openai/how-to/content-filters) help prevent misuse and mitigate prompt injection risks (XPIA). all outputs are policy-governed. |
0 commit comments