In `Thinker` methods decorated with `result_processor`, it is common to start with a check like: ```python if not result.success: raise RuntimeError(result.failure_info.exception) ``` This could just be an optional feature of `result_processor` to reduce boilerplate.
In
Thinkermethods decorated withresult_processor, it is common to start with a check like:This could just be an optional feature of
result_processorto reduce boilerplate.