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

Method model_count

uncommon_route/benchmark.py:478–482  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

476 return {m: self.get_quality_estimate(m, category) for m in models}
477
478 def model_count(self) -> int:
479 seen: set[str] = set()
480 for entries in self._sources.values():
481 seen.update(entries.keys())
482 return len(seen)
483
484 def source_summary(self) -> dict[str, int]:
485 return {name: len(entries) for name, entries in self._sources.items()}

Callers 1

_on_startupFunction · 0.80

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected