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

# Variables

## Supported Types

### `string`

```typescript theme={null}
const value: string = "<value>";
```

### `models.InputText`

```typescript theme={null}
const value: models.InputText = {
  text: "Hello, how can I help you?",
  type: "input_text",
};
```

### `models.InputImage`

```typescript theme={null}
const value: models.InputImage = {
  detail: "auto",
  type: "input_image",
};
```

### `models.InputFile`

```typescript theme={null}
const value: models.InputFile = {
  type: "input_file",
};
```
