-
Notifications
You must be signed in to change notification settings - Fork 1k
.NET: [Breaking] RenameAgentRunResponse and AgentRunResponseUpdate classes
#3197
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: [Breaking] RenameAgentRunResponse and AgentRunResponseUpdate classes
#3197
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 implements a breaking change to rename AgentRunResponse and AgentRunResponseUpdate classes to AgentResponse and AgentResponseUpdate respectively. The renaming is part of addressing issue #2899 and improves the clarity and consistency of the API naming.
Changes:
- Renamed
AgentRunResponsetoAgentResponseacross all code files - Renamed
AgentRunResponseUpdatetoAgentResponseUpdateacross all code files - Updated all references, method names, variable names, documentation, and comments to use the new names
Reviewed changes
Copilot reviewed 189 out of 189 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Core abstractions | Updated class definitions, method signatures, and XML documentation in Microsoft.Agents.AI.Abstractions |
| Test files | Updated all unit tests and integration tests to use new class names |
| Sample files | Updated sample code and demonstrations to use new class names |
| Supporting libraries | Updated all dependent libraries (DurableTask, Workflows, OpenAI, etc.) to use new names |
| Documentation | Updated inline comments, XML documentation, and README files |
| Generated code | Updated code generation templates and generated output |
Addresses: #2899