## List `models.list() -> object` **get** `/models` Show Available Models ### Returns - `object` ### Example ```python import os from tzafon import Lightcone client = Lightcone( api_key=os.environ.get("TZAFON_API_KEY"), # This is the default and can be omitted ) models = client.models.list() print(models) ```