MCPcopy Create free account
hub / github.com/CommonstackAI/UncommonRoute / export_records

Method export_records

uncommon_route/traces.py:444–446  ·  view source on GitHub ↗
(self, limit: int | None = None)

Source from the content-addressed store, hash-verified

442 return records[:limit] if limit else records
443
444 def export_records(self, limit: int | None = None) -> list[dict[str, Any]]:
445 records = self.history(limit=limit)
446 return [_trace_payload(record) for record in records]
447
448 def recent(self, limit: int = 50, *, errors_only: bool = False) -> list[dict[str, Any]]:
449 records = self.history()

Callers

nothing calls this directly

Calls 2

historyMethod · 0.95
_trace_payloadFunction · 0.85

Tested by

no test coverage detected