> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vlm.run/llms.txt
> Use this file to discover all available pages before exploring further.

# client.models

> Models API Reference

The `client.models` object provides access to available VLM Run models and their capabilities.

## List Models

```python theme={"theme":{"light":"github-light","dark":"dark-plus"}}
from vlmrun.client import VLMRun
from vlmrun.client.types import ModelInfoResponse


client = VLMRun()

# List all available models
models: List[ModelInfoResponse] = client.models.list()

# Print model information
for model in models:
    print(f"Model: {model.model}")
    print(f"Domain: {model.domain}")
```
