Get the current conversation context.
(self)
| 244 | |
| 245 | @property |
| 246 | def context(self) -> list[dict[str, Any]]: |
| 247 | """Get the current conversation context.""" |
| 248 | return self._context.copy() |
| 249 | |
| 250 | @property |
| 251 | def step_count(self) -> int: |
nothing calls this directly
no outgoing calls
no test coverage detected