Condition autogen.beta.events.conditions.Condition # Bases: ABC and_ # and_(other) Source code in autogen/beta/events/conditions.py 20 21 22 23def 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 28 29 30 31def 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 36 37def not_(self) -> "NotCondition": return NotCondition(self)