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
AGS currently has support for AssistantAgent agent and RoundRobin/LLM Selector teams from AgentChat.
As developers experiment with new types of custom agents and teams, we will need clear documentation on how to support these new agent types in AGS.
Current approach
Define your new agents and teams, add them to autogenstudio.components
Update datamodel AgentTypes and TeamTypes to include new datamodel . Add new AgentConfig that extends AgentConfig.
classAgentTypes(str, Enum):
ASSISTANT="AssistantAgent"USERPROXY="UserProxyAgent"+CUSTOMWEBSURFER="CustomWebSurfer"# your new agent
Update ComponentFactory to include logic on how to instantiate new custom agent
Update tests
In the future, it would be great to figure out something more automatic.
E.g., add type definitions and class to some directory and logic to load is inferred.
The text was updated successfully, but these errors were encountered:
AGS currently has support for AssistantAgent agent and RoundRobin/LLM Selector teams from AgentChat.
As developers experiment with new types of custom agents and teams, we will need clear documentation on how to support these new agent types in AGS.
Current approach
AgentConfig
.In the future, it would be great to figure out something more automatic.
E.g., add type definitions and class to some directory and logic to load is inferred.
The text was updated successfully, but these errors were encountered: