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

# Model Schemas

> Inspect bundled LinkModel schemas to discover model names, modalities, and model-specific CLI flags.

The CLI ships generated schemas for image and video models, so normal command execution does not fetch metadata at runtime.

List available models:

```bash theme={null}
lkm models list
lkm models list --modality image
lkm models list --modality video
```

Inspect one model:

```bash theme={null}
lkm models show kling-v3
lkm models show kling-v3 --json
```

Use schema output before scripting a model-specific workflow. It shows the model name, modality, supported parameters, and the flags generated from those parameters.

## Choosing Models

Use the CLI schema commands when you are writing terminal workflows. Use the [Models](/models) page when you need pricing, provider grouping, and endpoint support.

## Updating Schemas

Update the CLI package to receive newer bundled schemas:

```bash theme={null}
npm install -g linkmodel-cli@latest
```

If a model appears in the hosted docs but not in your local CLI, update the package first and check again:

```bash theme={null}
lkm --version
lkm models list
```
