(self, output: list[TResponseOutputItem] | Exception)
| 68 | self.hardcoded_usage = usage |
| 69 | |
| 70 | def set_next_output(self, output: list[TResponseOutputItem] | Exception): |
| 71 | self.turn_outputs.append(output) |
| 72 | |
| 73 | def add_multiple_turn_outputs(self, outputs: list[list[TResponseOutputItem] | Exception]): |
| 74 | self.turn_outputs.extend(outputs) |