Skip to content

Commit a38b559

Browse files
committed
validation
1 parent acabee9 commit a38b559

9 files changed

+10
-10
lines changed

articles/app-service/overview-ai-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Build AI-powered .NET applications with these tutorials:
3131
- [Build a RAG application with Azure OpenAI and Azure AI Search (.NET)](tutorial-ai-openai-search-dotnet.md) - Implement RAG to enable your AI models to access and use your organization's data.
3232
- [Integrate an App Service app as an MCP Server for GitHub Copilot Chat (.NET)](tutorial-ai-model-context-protocol-server-dotnet.md)
3333
- [Add an App Service app as a tool in Azure AI Foundry Agent Service (.NET)](tutorial-ai-integrate-azure-ai-agent-dotnet.md)
34-
- [Tutorial: Build an agentic web app in Azure App Service with Microsoft Semantic Kernel or Azure AI Foundry Agent Service (.NET)](tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet.md)
34+
- [Tutorial: Build an agentic web app in Azure App Service with Microsoft Semantic Kernel or Azure AI Foundry Agent Service (.NET)](tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet.md)
3535
- [Build a RAG application with Azure OpenAI and Azure SQL](deploy-intelligent-apps-dotnet-to-azure-sql.md) - Use Azure SQL as a vector database for RAG applications.
3636
- [Run a chatbot with a local SLM sidecar extension](tutorial-ai-slm-dotnet.md) - Deploy a chatbot that uses a local SLM without requiring an external AI service.
3737
- [Invoke OpenAPI web app from Azure AI Agent](invoke-openapi-web-app-from-azure-ai-agent-service.md) - Make your web API available to AI agents.

articles/app-service/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ items:
6464
- name: AI Foundry Agent calling web app
6565
href: tutorial-ai-integrate-azure-ai-agent-dotnet.md
6666
- name: Agentic web app (.NET)
67-
href: tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet.md
67+
href: tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet.md
6868
- name: Invoke OpenAPI app from Azure AI Agent
6969
href: invoke-openapi-web-app-from-azure-ai-agent-service.md
7070
- name: Chatbot with local SLM

articles/app-service/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet.md renamed to articles/app-service/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ If your web application already has useful features, like shopping, hotel bookin
2121
### [Semantic Kernel](#tab/semantickernel)
2222

2323

24-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/semantic-kernel-agent.png" alt-text="Screenshot of a chat completion session with a semantic kernel agent.":::
24+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/semantic-kernel-agent.png" alt-text="Screenshot of a chat completion session with a semantic kernel agent.":::
2525

2626
### [Azure AI Foundry Agent Service](#tab/aifoundry)
2727

28-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/ai-foundry-agent.png" alt-text="Screenshot of a chat completion session with an Azure AI Foundry agent.":::
28+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/ai-foundry-agent.png" alt-text="Screenshot of a chat completion session with an Azure AI Foundry agent.":::
2929

3030
-----
3131

@@ -153,13 +153,13 @@ The OpenAPI code is defined in *Program.cs*. For example, the "get tasks" API de
153153

154154
1. Select **Azure OpenAI** and copy the URL in **Azure OpenAI endpoint** for later.
155155

156-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/foundry-project-endpoints.png" alt-text="Screenshot showing how to copy the OpenAI endpoint and the foundry project endpoint in the foundry portal.":::
156+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/foundry-project-endpoints.png" alt-text="Screenshot showing how to copy the OpenAI endpoint and the foundry project endpoint in the foundry portal.":::
157157

158158
1. From the left menu, select **Agents**, then select the default agent.
159159

160160
1. From the **Setup** pane, copy **Agent ID**, as well as the model name in **Deployment**.
161161

162-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/foundry-agent-id-model.png" alt-text="Screenshot showing how to copy the agent ID and the model deployment name in the foundry portal.":::
162+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/foundry-agent-id-model.png" alt-text="Screenshot showing how to copy the agent ID and the model deployment name in the foundry portal.":::
163163

164164
1. In the **Setup** pane, add an action with the OpenAPI spec tool. Use the OpenAPI schema that you get from the deployed web app and **anonymous** authentication. For detailed steps, see [How to use the OpenAPI spec tool](/azure/ai-foundry/agents/how-to/tools/openapi-spec-samples?pivots=portal).
165165

@@ -173,7 +173,7 @@ The OpenAPI code is defined in *Program.cs*. For example, the "get tasks" API de
173173

174174
1. At the upper right corner of the foundry portal, select the name of the resource, then select **Resource Group** to open it in the Azure portal.
175175

176-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/go-to-azure-portal.png" alt-text="Screenshot showing how to quickly go to the resource group view for the foundry resource in the Azure portal.":::
176+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/go-to-azure-portal.png" alt-text="Screenshot showing how to quickly go to the resource group view for the foundry resource in the Azure portal.":::
177177

178178
1. Add a role for each of the two resources for the App Service app's manage identity using the following table:
179179

@@ -227,11 +227,11 @@ The OpenAPI code is defined in *Program.cs*. For example, the "get tasks" API de
227227
### [Semantic Kernel](#tab/semantickernel)
228228

229229

230-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/semantic-kernel-agent.png" alt-text="Screenshot of a chat completion session with a semantic kernel agent.":::
230+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/semantic-kernel-agent.png" alt-text="Screenshot of a chat completion session with a semantic kernel agent.":::
231231

232232
### [Azure AI Foundry Agent Service](#tab/aifoundry)
233233

234-
:::image type="content" source="media/tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet/ai-foundry-agent.png" alt-text="Screenshot of a chat completion session with an Azure AI Foundry agent.":::
234+
:::image type="content" source="media/tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet/ai-foundry-agent.png" alt-text="Screenshot of a chat completion session with an Azure AI Foundry agent.":::
235235

236236
-----
237237

articles/app-service/tutorial-ai-integrate-azure-ai-agent-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ You've now enabled your App Service app to be used as a tool by Azure AI Foundry
200200
To take the next step and learn how to run your agent directly within Azure App Service, see the following tutorial:
201201
202202
> [!div class="nextstepaction"]
203-
> [Tutorial: Build an agentic web app in Azure App Service with Microsoft Semantic Kernel or Azure AI Foundry Agent Service (.NET)](tutorial-ai-agentic-web-app-semantic-kernel-foundry-dotnet.md)
203+
> [Tutorial: Build an agentic web app in Azure App Service with Microsoft Semantic Kernel or Azure AI Foundry Agent Service (.NET)](tutorial-ai-agent-web-app-semantic-kernel-foundry-dotnet.md)
204204
205205
## More resources
206206

0 commit comments

Comments
 (0)