Searching the registry
Find models across every namespace you can see.
Search models#
python
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
Iterate every page automatically:
python
1 2 | |
Search namespaces#
python
1 2 | |
What you can see#
Search results are scoped to what you're allowed to read: public namespaces plus those in your tenant (and any you're an explicit member of). You'll never see models in namespaces you can't access.
Notes#
- Query text is matched against model names, display names, descriptions, and tags.
sortcontrols ordering; combine with pagination (page,per_page).- Results validate into the same
Modelobjects returned elsewhere, som.full_name,m.type,m.download_count, etc. are all available.
Under the hood (REST)#
GET /api/v1/search/models— query paramsq,type,namespace,tag,sort, plus pagination.GET /api/v1/search/namespaces— query paramqplus pagination.
See the REST API reference.