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
Describe the bug
If I have a program file that includes the following code:
// Add AgentApplicationOptions from appsettings config.builder.AddAgentApplicationOptions();// Add the Agentbuilder.AddAgent<AuthAgent>();builder.AddAgent<AuthAgent2>();
Where AuthAgent and AuthAgent2 are both AgentApplications,
The SDK Accepts this however only ever calls the 'last' agent registered.
There does not seem to be a way to attach a route or port to ither agent independently, or call for a named agent in the code: