Skip to content

AgentNameConflictError

autogen.AgentNameConflictError #

AgentNameConflictError(msg='Found multiple agents with the same name.', *args, **kwargs)

Bases: Exception

Source code in autogen/exception_utils.py
def __init__(self, msg: str = "Found multiple agents with the same name.", *args: Any, **kwargs: Any):
    super().__init__(msg, *args, **kwargs)