configuration.md

 1# Configuration
 2
 3When using AI in Zed, you can configure multiple dimensions:
 4
 51. Which LLM providers you can use
 6   - Zed's hosted models, which require [authentication](../authentication.md) and [subscription](./subscription.md)
 7   - [Using your own API keys](./llm-providers.md), which do not require the above
 8   - Using [external agents like Claude Agent](./external-agents.md), which also do not require the above
 92. [Model parameters and usage](./agent-settings.md#model-settings)
103. [Interactions with the Agent Panel](./agent-settings.md#agent-panel-settings)
11
12## Turning AI Off Entirely
13
14To disable all AI features, add the following to your `settings.json`:
15
16```json [settings]
17{
18  "disable_ai": true
19}
20```
21
22See [this blog post](https://zed.dev/blog/disable-ai-features) for background on this option.