Model Types
The Model type represents a single model returned by any_llm.list_models() and any_llm.alist_models().
Re-exported from openai.types.model.Model.
Import: from any_llm.types.model import Model
| Field | Type | Description |
|---|---|---|
id | str | The model identifier (e.g., "gpt-4.1-mini", "mistral-small-latest"). |
created | int | Unix timestamp (seconds) of when the model was created. |
object | str | Always "model". |
owned_by | str | The organization that owns the model. |
from any_llm import list_models
models = list_models("openai")for model in models: print(f"{model.id} (owned by {model.owned_by})")