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

Method history

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

Source from the content-addressed store, hash-verified

438 pass
439
440 def history(self, limit: int | None = None) -> list[RequestTrace]:
441 records = list(reversed(self._records))
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)

Callers 2

export_recordsMethod · 0.95
recentMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected