Skip to content

Commit 0d2085d

Browse files
committed
Temporarily removed language sections in missing docs
1 parent 89d0021 commit 0d2085d

6 files changed

Lines changed: 0 additions & 28 deletions

File tree

agent-framework/tutorials/agents/agent-as-mcp-tool.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Exposing an agent as an MCP tool
33
description: Learn how to expose an agent as a tool over the MCP protocol
4-
zone_pivot_groups: programming-languages
54
author: westey-m
65
ms.topic: tutorial
76
ms.author: westey
@@ -11,8 +10,6 @@ ms.service: semantic-kernel
1110

1211
# Exposing an agent as an MCP tool
1312

14-
::: zone pivot="programming-language-csharp"
15-
1613
This tutorial shows you how to expose an agent as a tool over the Model Context Protocol (MCP), so it can be used by other systems that support MCP tools.
1714

1815
## Prerequisites
@@ -81,8 +78,6 @@ await builder.Build().RunAsync();
8178

8279
This will start an MCP server that exposes the agent as a tool over the MCP protocol.
8380

84-
::: zone-end
85-
8681
## Next steps
8782

8883
> [!div class="nextstepaction"]

agent-framework/tutorials/agents/function-tools-approvals.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Using function tools with human in the loop approvals
33
description: Learn how to use function tools with human in the loop approvals
4-
zone_pivot_groups: programming-languages
54
author: westey-m
65
ms.topic: tutorial
76
ms.author: westey
@@ -11,7 +10,6 @@ ms.service: semantic-kernel
1110

1211
# Using function tools with human in the loop approvals
1312

14-
::: zone pivot="programming-language-csharp"
1513

1614
This tutorial step shows you how to use function tools that require human approval with an agent, where the agent is built on the Azure OpenAI Chat Completion service.
1715

@@ -97,8 +95,6 @@ Console.WriteLine(await agent.RunAsync(approvalMessage, thread));
9795

9896
Whenever you are using function tools with human in the loop approvals, remember to check for `FunctionApprovalRequestContent` instances in the response, after each agent run, until all function calls have been approved or rejected.
9997

100-
::: zone-end
101-
10298
## Next steps
10399

104100
> [!div class="nextstepaction"]

agent-framework/tutorials/workflows/visualization.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Workflow Visualization
33
description: Learn how to visualize workflows using the Agent Framework.
4-
zone_pivot_groups: programming-languages
54
author: TaoChenOSU
65
ms.topic: tutorial
76
ms.author: taochen
@@ -11,7 +10,6 @@ ms.service: semantic-kernel
1110

1211
# Visualizing Workflows
1312

14-
::: zone pivot="programming-language-python"
1513

1614
## Overview
1715

@@ -306,5 +304,3 @@ if os.getenv("CI"):
306304
### Running the Example
307305

308306
For the complete working implementation with visualization, see the [Concurrent with Visualization sample](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/workflows/visualization/concurrent_with_visualization.py).
309-
310-
::: zone-end

agent-framework/user-guide/workflows/observability.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Microsoft Agent Framework Workflows - Observability
33
description: In-depth look at Observability in Microsoft Agent Framework Workflows.
4-
zone_pivot_groups: programming-languages
54
author: TaoChenOSU
65
ms.topic: tutorial
76
ms.author: taochen
@@ -15,8 +14,6 @@ Observability provides insights into the internal state and behavior of workflow
1514

1615
Aside from the standard [GenAI telemetry](https://opentelemetry.io/docs/specs/semconv/gen-ai/), Agent Framework Workflows emits additional spans, logs, and metrics to provide deeper insights into workflow execution. These observability features help developers understand the flow of messages, the performance of executors, and any errors that may occur.
1716

18-
::: zone pivot="programming-language-python"
19-
2017
## Enable Observability
2118

2219
Observability is enabled framework-wide by setting the `ENABLE_OTEL=true` environment variable or calling `setup_observability()` at the beginning of your application.
@@ -52,8 +49,6 @@ For example:
5249

5350
![Span Relationships](./resources/images/workflow-trace.png)
5451

55-
::: zone-end
56-
5752
## Next Steps
5853

5954
- [Learn how to use agents in workflows](./using-agents.md) to build intelligent workflows.

agent-framework/user-guide/workflows/orchestrations/handoff.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Microsoft Agent Framework Workflows Orchestrations - Handoff
33
description: In-depth look at Handoff Orchestrations in Microsoft Agent Framework Workflows.
4-
zone_pivot_groups: programming-languages
54
author: TaoChenOSU
65
ms.topic: tutorial
76
ms.author: taochen
@@ -30,8 +29,6 @@ While agent-as-tools is commonly considered as a multi-agent pattern and it may
3029
- How to build interactive workflows with dynamic agent routing
3130
- How to handle multi-turn conversations with agent switching
3231

33-
::: zone pivot="programming-language-csharp"
34-
3532
In handoff orchestration, agents can transfer control to one another based on context, allowing for dynamic routing and specialized expertise handling.
3633

3734
## Set Up the Azure OpenAI Client
@@ -152,8 +149,6 @@ math_tutor: I'd be happy to help with calculus integration! Integration is the r
152149
- **Multi-turn Support**: Supports ongoing conversations with seamless agent switching
153150
- **Specialized Expertise**: Each agent focuses on their domain while collaborating through handoffs
154151

155-
::: zone-end
156-
157152
## Next steps
158153

159154
> [!div class="nextstepaction"]

agent-framework/user-guide/workflows/visualization.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Microsoft Agent Framework Workflows - Visualization
33
description: In-depth look at Visualization in Microsoft Agent Framework Workflows.
4-
zone_pivot_groups: programming-languages
54
author: TaoChenOSU
65
ms.topic: tutorial
76
ms.author: taochen
@@ -13,8 +12,6 @@ ms.service: semantic-kernel
1312

1413
Sometimes a workflow that has multiple executors and complex interactions can be hard to understand from just reading the code. Visualization can help you see the structure of the workflow more clearly, so that you can verify that it has the intended design.
1514

16-
::: zone pivot="programming-language-python"
17-
1815
Workflow visualization is done via a `WorkflowViz` object that can be instantiated with a `Workflow` object. The `WorkflowViz` object can then generate visualizations in different formats, such as Graphviz DOT format or Mermaid diagram format.
1916

2017
> [!TIP]
@@ -70,5 +67,3 @@ flowchart TD
7067
or in Graphviz DOT format:
7168

7269
![Workflow Diagram](./resources/images/workflow-viz.svg)
73-
74-
::: zone-end

0 commit comments

Comments
 (0)