You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: Feature request
about: Suggest an idea for this project
When I create an instance of an agent from AzureAIAgent, BedrockAgent, etc. I like to be able to pass around the Agent abstraction so the internals aren't tightly coupled to the implementation.
While this works fine for most aspects, there's no way to delete the agent without casting back to the concrete implementation.
Ideally, this should work like the AgentThread abstraction which exposes a DeleteAsync method and delegates the implementation to the implementing type.