Skip to content

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

FieldTypeDescription
idstrThe model identifier (e.g., "gpt-4.1-mini", "mistral-small-latest").
createdintUnix timestamp (seconds) of when the model was created.
objectstrAlways "model".
owned_bystrThe 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})")