Condition autogen.beta.events.conditions.Condition # Bases: ABC and_ # and_(other) Source code in autogen/beta/events/conditions.py 21 22 23 24def and_(self, other: Any) -> "AndCondition": if not isinstance(other, Condition): other = TypeCondition(other) return AndCondition(self, other) or_ # or_(other) Source code in autogen/beta/events/conditions.py 29 30 31 32def or_(self, other: Any) -> "OrCondition": if not isinstance(other, Condition): other = TypeCondition(other) return OrCondition(self, other) not_ # not_() Source code in autogen/beta/events/conditions.py 37 38def not_(self) -> "NotCondition": return NotCondition(self)