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

> Learn how to work with models in the VLM Run Node.js SDK

## Model Operations

The `models` component provides methods for listing and getting information about available models.

### List Available Models

```typescript theme={"theme":{"light":"github-light","dark":"dark-plus"}}
import { VlmRun } from "vlmrun";

const client = new VlmRun({
  apiKey: "your-api-key",
});

// List all available models
const models = await client.models.list();
console.log(models);
```
