qai_hub.get_models
- get_models(offset=0, limit=50)
- Returns a list of models. - Parameters:
- offset (int) – Offset the query to get even older models. 
- limit (int) – Maximum numbers of models to return. 
 
- Returns:
- model_list – List of models. 
- Return type:
- List[Model] 
 - Examples - Fetch - Modelobjects for your five most recent models:- import qai_hub as hub models = hub.get_models(limit=5)