Skip to content

Commit a566880

Browse files
committed
fixes
1 parent 2d76799 commit a566880

File tree

9 files changed

+13
-15
lines changed

9 files changed

+13
-15
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Azure AI Agents supports function calling, which allows you to describe the stru
2323
* A prepared environment. See the [overview](azure-functions.md) article for details.
2424

2525
> [!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.
2727
2828
::: zone pivot="python"
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To use all features of function calling including parallel functions, you need t
2727
## Prerequisites
2828

2929
* [Azure Functions Core Tools v4.x](/azure/azure-functions/functions-run-local)
30-
* [A deployed agent with the standard setup](/azure/ai-services/agents/ai-services/agents/environment-setupchoose-your-setup)
30+
* [A deployed agent with the standard setup](/../../environment-setup.md#choose-your-setup)
3131
> [!NOTE]
3232
> The basic agent setup is not supported.
3333
* [Azurite](https://github.com/Azure/Azurite)

articles/ai-foundry/agents/how-to/tools/bing-code-samples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ Use this article to find step-by-step instructions and code samples for Groundin
1919

2020
## Prerequisites
2121

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).
2323
* 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>`
2424

2525
> [!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.
2727
2828
::: zone pivot="portal"
2929

articles/ai-foundry/agents/how-to/tools/openapi-spec-samples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Use this article to find step-by-step instructions and code samples for using Op
3535

3636
1. Select **Next** and select your authentication method. Choose `connection` for `API key`.
3737
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).
3939

4040
1. Copy and paste your OpenAPI specification in the text box.
4141

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ Start by adding the Azure AI Foundry Agent service connectors to your workflow.
6060

6161
1. Depending on your use-case, choose the actions you need.
6262

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:
6464
1. Create thread
6565
1. Create run
6666
1. Get run
6767
1. List messages
6868

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:
7070

7171
1. Create run
7272
1. Get run
@@ -91,7 +91,7 @@ The **List Agent** connector only lists all the agents you have in your AI proje
9191

9292
## Configure the "create thread" connector
9393

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:
9595

9696
**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?*"
9797

@@ -120,7 +120,7 @@ The **create thread** connector creates a new [thread](/azure/ai-services/agents
120120

121121
## Configure the "create run" connector
122122

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.
124124

125125
To configure the **create run** connector, click on it and provide the following information:
126126

articles/ai-foundry/agents/includes/quickstart-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.service: azure-ai-agent-service
66
ms.topic: include
77
ms.date: 02/15/2025
88
---
9-
| [Reference documentation](../../openai/assistants-reference.md) |
9+
| [Reference documentation](/rest/api/aifoundry/aiagents/) |
1010

1111
## Prerequisites
1212

articles/ai-foundry/agents/index.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ landingContent:
4444
linkLists:
4545
- linkListType: concept
4646
links:
47-
- text: What are agents?
48-
url: ./concepts/agents.md
4947
- text: Tracing with Application Insights
5048
url: ./concepts/tracing.md
5149

articles/ai-foundry/agents/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Azure AI Foundry Agent Service provides a production-ready foundation for deploy
9999

100100
| Capability | Azure AI Foundry Agent Service |
101101
|------------|--------------------------------|
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 |
103103
| **2. Multi-agent coordination** | Built-in support for agent-to-agent messaging. |
104104
| **3. Tool orchestration** | Server-side execution and retry of [tool calls](how-to\tools\overview.md) with structured logging. No manual orchestration required. |
105105
| **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. |

articles/ai-foundry/agents/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ items:
105105
- name: Use your own resources
106106
href: how-to/use-your-own-resources.md
107107
- name: Content filtering
108-
href: ../openai/how-to/content-filters.md?context=/azure/ai-services/agents/context/context
108+
href: ../../ai-services/openai/how-to/content-filters.md?context=/azure/ai-services/agents/context/context
109109
- name: Use virtual networks
110110
href: how-to/virtual-networks.md
111111
- name: Multi-agent workflows
@@ -151,6 +151,6 @@ items:
151151
- name: Resources
152152
items:
153153
- name: Support and help options
154-
href: ../cognitive-services-support-options.md?context=/azure/ai-services/agents/context/context
154+
href: ../../ai-services/cognitive-services-support-options.md?context=/azure/ai-services/agents/context/context
155155
- name: Terms of use
156156
href: https://www.microsoft.com/licensing/terms/productoffering/MicrosoftAzure/MCA#ServiceSpecificTerms

0 commit comments

Comments
 (0)