Coverage for transformer_lens/tools/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.10.1, created at 2026-04-30 01:33 +0000
« prev ^ index » next coverage.py v7.10.1, created at 2026-04-30 01:33 +0000
1"""TransformerLens tools package.
3This package contains utilities and tools for working with TransformerLens,
4including the model registry for discovering compatible HuggingFace models.
6Subpackages:
7 - model_registry: Tools for discovering and documenting supported models
8"""
10from . import model_registry
12__all__ = ["model_registry"]