(self, limit: int | None = None)
| 323 | return records[:limit] if limit else records |
| 324 | |
| 325 | def export_records(self, limit: int | None = None) -> list[dict[str, Any]]: |
| 326 | records = self.history(limit=limit) |
| 327 | return [_record_payload(record) for record in records] |
| 328 | |
| 329 | def recent(self, limit: int = 30) -> list[dict[str, Any]]: |
| 330 | """Most recent routed requests that carry a request_id (for feedback).""" |
no test coverage detected