How to get all model revisions

hi @borgr ,

You get all the repo references using our API

!pip -q install huggingface_hub
from huggingface_hub import HfApi
api = HfApi()
api.list_repo_refs("allenai/OLMo-7B")
1 Like