## List `models.list() -> ModelListResponse` **get** `/models` Lists the currently available models, and provides basic information about each one. ### Returns - **ModelListResponse:** `List[LlamaModel]` - **id:** `str` The unique model identifier, which can be referenced in the API. - **created:** `int` The creation time of the model. - **object:** `Literal["model"]` The object type, which is always "model" - `"model"` - **owned\_by:** `str` The owner of the model. ### Example ```python from llama_api_client import LlamaAPIClient client = LlamaAPIClient( api_key="My API Key", ) llama_models = client.models.list() print(llama_models) ```