1# Configuration
2
3When using AI in Zed, you can customize several aspects:
4
51. Which [LLM providers](./llm-providers.md) you can use
62. [Model parameters and usage](./agent-settings.md#model-settings)
73. [Interactions with the Agent Panel](./agent-settings.md#agent-panel-settings)
8
9## Turning AI Off Entirely
10
11We want to respect users who want to use Zed without interacting with AI whatsoever.
12To do that, add the following key to your `settings.json`:
13
14```json
15{
16 "disable_ai": true
17}
18```
19
20Read [the following blog post](https://zed.dev/blog/disable-ai-features) to learn more about our motivation to promote this, as much as we also encourage users to explore AI-assisted programming.