mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
9fdd7429a8
* Add Magentic orchestration sample scaffold Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/8799740a-74d8-4100-b6f6-76dcd0418c87 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Validate Magentic orchestration sample Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/8799740a-74d8-4100-b6f6-76dcd0418c87 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Document follow-up changes for the Magentic .NET sample Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/caa3488f-d6f5-494d-a928-a45d6a98b3c3 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Remove CHANGES.md from Magentic sample Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/ffab38e2-37f9-4643-a782-20680573965a Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * Fix PauseIfInteractive to also skip when stdout is redirected Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/07ddf735-29cc-4775-b588-fd71ca76fa58 Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * fix: Update for PR Review Feedback * fix: Update Sample README for PR Feedback --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> Co-authored-by: Jacob Alber <jaalber@microsoft.com>
9fdd7429a8
ยท
2026-05-22 19:09:18 +00:00
History
Magentic Orchestration Sample
This sample showcases the Magentic Orchestration Pattern in .NET, setting up a team with three roles:
- ResearcherAgent gathers factual background information.
- CoderAgent uses
HostedCodeInterpreterToolfor quantitative analysis. - MagenticManager plans the work, tracks progress, and decides who should act next.
What This Sample Demonstrates
- Building a Magentic workflow with
MagenticWorkflowBuilder - Combining standard responses-based agents with a code interpreter-enabled participant
- Streaming orchestration events such as the initial plan, replans, and progress-ledger updates
- Printing the final multi-agent conversation transcript
Prerequisites
AZURE_AI_PROJECT_ENDPOINTset to your Azure AI Foundry project endpointAZURE_AI_MODEL_DEPLOYMENT_NAMEset to your model deployment name (defaults togpt-5.4-mini)az logincompleted before running the sample
Running the Sample
dotnet run
Expected Output
The sample prints:
- The original task prompt
- Streamed updates from the participating agents
- Magentic plan and progress-ledger events as the workflow coordinates the team
- The final conversation transcript returned by the workflow
Related Samples
- Handoff Orchestration - another multi-agent orchestration pattern in .NET workflows
- Python Magentic workflow sample - the source scenario that this sample ports