Files
autogen/autogen/exception_utils.py
Jack Gerrits 24418bd5d2 Fix type issues in exception_utils.py (#1972)
* Fix type issues in exception_utils.py

* fix yaml
2024-03-13 20:24:21 +00:00

41 lines
1.3 KiB
Python

from typing import Any
class AgentNameConflict(Exception):
def __init__(self, msg: str = "Found multiple agents with the same name.", *args: Any, **kwargs: Any):
super().__init__(msg, *args, **kwargs)
class NoEligibleSpeaker(Exception):
"""Exception raised for early termination of a GroupChat."""
def __init__(self, message: str = "No eligible speakers."):
self.message = message
super().__init__(self.message)
class SenderRequired(Exception):
"""Exception raised when the sender is required but not provided."""
def __init__(self, message: str = "Sender is required but not provided."):
self.message = message
super().__init__(self.message)
class InvalidCarryOverType(Exception):
"""Exception raised when the carryover type is invalid."""
def __init__(
self, message: str = "Carryover should be a string or a list of strings. Not adding carryover to the message."
):
self.message = message
super().__init__(self.message)
class UndefinedNextAgent(Exception):
"""Exception raised when the provided next agents list does not overlap with agents in the group."""
def __init__(self, message: str = "The provided agents list does not overlap with agents in the group."):
self.message = message
super().__init__(self.message)