docs: Add example of controlling reasoning effort (#36135)

Release Notes:

- N/A
This commit is contained in:
Oleksiy Syvokon 2025-08-14 07:11:53 +03:00 committed by GitHub
parent 32f9de6124
commit 5a6df38ccf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -392,26 +392,26 @@ Zed will also use the `OPENAI_API_KEY` environment variable if it's defined.
#### Custom Models {#openai-custom-models} #### Custom Models {#openai-custom-models}
The Zed agent comes pre-configured to use the latest version for common models (GPT-5, GPT-5 mini, o4-mini, GPT-4.1, and others). The Zed agent comes pre-configured to use the latest version for common models (GPT-5, GPT-5 mini, o4-mini, GPT-4.1, and others).
To use alternate models, perhaps a preview release or a dated model release, or if you wish to control the request parameters, you can do so by adding the following to your Zed `settings.json`: To use alternate models, perhaps a preview release, or if you wish to control the request parameters, you can do so by adding the following to your Zed `settings.json`:
```json ```json
{ {
"language_models": { "language_models": {
"openai": { "openai": {
"available_models": [ "available_models": [
{
"name": "gpt-5",
"display_name": "gpt-5 high",
"reasoning_effort": "high",
"max_tokens": 272000,
"max_completion_tokens": 20000
},
{ {
"name": "gpt-4o-2024-08-06", "name": "gpt-4o-2024-08-06",
"display_name": "GPT 4o Summer 2024", "display_name": "GPT 4o Summer 2024",
"max_tokens": 128000 "max_tokens": 128000
},
{
"name": "o1-mini",
"display_name": "o1-mini",
"max_tokens": 128000,
"max_completion_tokens": 20000
} }
], ]
"version": "1"
} }
} }
} }