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

# Architecture

Model architecture information

## Example Usage

```typescript theme={null}
import { Architecture } from "@openrouter/sdk/models";

let value: Architecture = {
  inputModalities: [
    "text",
  ],
  instructType: "chatml",
  modality: "text",
  outputModalities: [
    "text",
  ],
  tokenizer: "GPT",
};
```

## Fields

| Field              | Type                                                     | Required             | Description                   | Example |
| ------------------ | -------------------------------------------------------- | -------------------- | ----------------------------- | ------- |
| `inputModalities`  | [models.InputModality](../models/inputmodality.mdx)\[]   | :heavy\_check\_mark: | Supported input modalities    |         |
| `instructType`     | [models.InstructType](../models/instructtype.mdx)        | :heavy\_check\_mark: | Instruction format type       | chatml  |
| `modality`         | *string*                                                 | :heavy\_check\_mark: | Primary modality of the model | text    |
| `outputModalities` | [models.OutputModality](../models/outputmodality.mdx)\[] | :heavy\_check\_mark: | Supported output modalities   |         |
| `tokenizer`        | [models.Tokenizer](../models/tokenizer.mdx)              | :heavy\_check\_mark: | N/A                           | GPT     |
