## List `models.list() -> ModelListResponse` **get** `/models` Lists the currently available models, and provides basic information about each one such as the owner and availability. ### Returns - `class ModelListResponse` - **data:** `List[Data]` - **id:** `str` The model identifier, which can be referenced in the API endpoints. - **created:** `int` The Unix timestamp (in seconds) when the model was created. - **object:** `Literal["model"]` The object type, which is always "model". - `"model"` - **owned\_by:** `str` The organization that owns the model. - **object:** `Literal["list"]` - `"list"` ### Example ```python from do_gradientai import GradientAI client = GradientAI( api_key="My API Key", ) models = client.models.list() print(models.data) ```