> For the complete documentation index, see [llms.txt](https://docs.mozilla.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mozilla.ai/api-reference/completion-1/model.md).

# Model

The `Model` type represents a single model returned by `any_llm.list_models()` and `any_llm.alist_models()`.

### `Model`

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.                                    |

### Usage

```python
from any_llm import list_models

models = list_models("openai")
for model in models:
    print(f"{model.id} (owned by {model.owned_by})")
```

{% hint style="info" %}
The `Model` type is a direct re-export from the OpenAI SDK. any-llm normalizes all provider responses into this format so you get a consistent interface regardless of which provider you query.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mozilla.ai/api-reference/completion-1/model.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
