-
Notifications
You must be signed in to change notification settings - Fork 668
.NET: Sample demonstrating the use of agents in workflows #1836
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET: Sample demonstrating the use of agents in workflows #1836
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a new catalog sample demonstrating how to integrate AI agents into workflow pipelines. The sample creates a sequential translation chain (English → French → Spanish → English) using three ChatClientAgent instances connected as workflow executors.
Key changes:
- New sample project showing agents-in-workflows integration pattern
- Translation chain workflow demonstrating agent composition
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| dotnet/samples/Catalog/AgentsInWorkflows/README.md | Documentation for the new sample including prerequisites and environment setup |
| dotnet/samples/Catalog/AgentsInWorkflows/Program.cs | Sample code implementing a translation workflow with three sequential agents |
| dotnet/samples/Catalog/AgentsInWorkflows/AgentsInWorkflows.csproj | Project configuration with required dependencies |
| dotnet/agent-framework-dotnet.slnx | Adds the new sample project to the solution |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…m/SergeyMenshykh/agent-framework into agents-in-workflow-catalog-sample
This PR adds sample demonstrating how to integrate AI agents into a workflow.
Contributes to: #1349