Get the current conversation context.
(self)
| 268 | |
| 269 | @property |
| 270 | def context(self) -> list[dict[str, Any]]: |
| 271 | """Get the current conversation context.""" |
| 272 | return self._context.copy() |
| 273 | |
| 274 | @property |
| 275 | def step_count(self) -> int: |
nothing calls this directly
no outgoing calls
no test coverage detected