Get the output index. Returns: Position index of this response in the sequence
(self)
| 170 | |
| 171 | @property |
| 172 | def index(self) -> int: |
| 173 | """ |
| 174 | Get the output index. |
| 175 | |
| 176 | Returns: |
| 177 | Position index of this response in the sequence |
| 178 | """ |
| 179 | return self.raw.outputs.index |
| 180 | |
| 181 | @property |
| 182 | def finished(self) -> bool: |
no outgoing calls