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

# 模型

> 查看 Copilot CLI 支持的模型列表，并在 Laravel Copilot SDK 的会话配置中指定模型 ID。

## 模型列表

通过 `Copilot::client()->listModels()` 可以获取 Copilot CLI 支持的模型列表。

可用模型会因 Copilot CLI 的更新和组织策略而变化。
请将 [模型列表](https://github.com/invokable/laravel-copilot-sdk/blob/main/docs/models-list.md) 视为参考信息。

## 指定模型 ID

在 SessionConfig 的 `model` 中指定的是 `ID`。

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

<Info>
  最新信息请参考 [GitHub 仓库](https://github.com/invokable/laravel-copilot-sdk)。
</Info>


## Related topics

- [Eloquent Observer 与模型事件](/zh/advanced/eloquent-observers.md)
- [Laravel Folio](/zh/folio.md)
- [URL 生成](/zh/urls.md)
- [Laravel Telescope 实战技巧](/zh/blog/telescope-introduction.md)
- [Eloquent 入门](/zh/eloquent.md)
