Model bases
Provides coroutine-based access to retrieve model base definitions from the Norman persistence layer.
The ModelBases class allows fetching metadata and configuration information about foundational models (pretrained, versioned, or template models) available in the system.
get_model_bases(token, request=None) async
Coroutine
Retrieve all model bases that match the provided filtering constraints.
If no request is provided, defaults to fetching all completed (finished_models=True) model bases.
Parameters
token (
Sensitive[str]) — Authentication token authorizing the request.request (
Optional[GetModelsRequest]) — Optional filtering and pagination request specifying which models to retrieve.
Response Structure
response (
dict[str, ModelBase]) — Dictionary mapping model base IDs to correspondingModelBaseobjects.