Method
value_postprocess
(
self,
outputs: List[List[RequestOutput]],
valid_solvers: List[BaseTree],
)
Source from the content-addressed store, hash-verified
| 184 | return prompts, prompts_span |
| 185 | |
| 186 | def value_postprocess( |
| 187 | self, |
| 188 | outputs: List[List[RequestOutput]], |
| 189 | valid_solvers: List[BaseTree], |
| 190 | ) -> List[BaseTree]: |
| 191 | for solver, output in zip(valid_solvers, outputs): |
| 192 | if solver is not None: |
| 193 | self.selector(solver, output) |
| 194 | return valid_solvers |
| 195 | |
| 196 | def postprocess( |
| 197 | self, |
Tested by
no test coverage detected