Evaluate a condition string against context values.
(condition: str, context: Dict[str, Any])
| 178 | |
| 179 | @staticmethod |
| 180 | def evaluate_condition(condition: str, context: Dict[str, Any]) -> bool: |
| 181 | """Evaluate a condition string against context values.""" |
| 182 | return _evaluate_condition(condition, context) |
| 183 | |
| 184 | def __getattr__(self, name: str) -> Any: |
| 185 | """Delegate step execution methods to agent_interpreter.""" |
no outgoing calls