(self)
| 381 | return self.messages[-1].get("extra", {}) |
| 382 | |
| 383 | def step(self) -> list[dict[str, Any]]: |
| 384 | return self.execute_actions(self.query()) |
| 385 | |
| 386 | def query(self) -> dict[str, Any]: |
| 387 | if 0 < self.config.step_limit <= self.n_calls: |
no test coverage detected