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

# Models

> List supported Copilot CLI models and select model IDs in Laravel Copilot SDK session configuration.

## Model list

Use `Copilot::client()->listModels()` to get the list of models supported by Copilot CLI.

[Available models](https://github.com/invokable/laravel-copilot-sdk/blob/main/docs/models-list.md) can change based on Copilot CLI updates and your organization policy.
Treat the model list document as a reference.

## Specifying a model ID

Set the model `ID` in `SessionConfig.model`.

```php theme={null}
Copilot::run($prompt, config: ['model' => 'auto']);
```

<Info>
  For the latest updates, see the [GitHub repository](https://github.com/invokable/laravel-copilot-sdk).
</Info>


## Related topics

- [Eloquent Observers and Model Events](/en/advanced/eloquent-observers.md)
- [Eloquent ORM](/en/eloquent.md)
- [Livewire 4 — Reactive UIs without JavaScript](/en/blog/livewire-introduction.md)
- [Custom providers](/en/packages/laravel-copilot-sdk/custom-providers.md)
- [Laravel Folio](/en/folio.md)
