assistant: Add support for claude-3-7-sonnet-thinking
(#27085)
Closes #25671 Release Notes: - Added support for `claude-3-7-sonnet-thinking` in the assistant panel --------- Co-authored-by: Danilo Leal <daniloleal09@gmail.com> Co-authored-by: Antonio Scandurra <me@as-cii.com> Co-authored-by: Agus Zubiaga <hi@aguz.me>
This commit is contained in:
parent
2ffce4f516
commit
a709d4c7c6
16 changed files with 1212 additions and 177 deletions
|
@ -68,6 +68,21 @@ You can add custom models to the Anthropic provider by adding the following to y
|
|||
|
||||
Custom models will be listed in the model dropdown in the assistant panel.
|
||||
|
||||
You can configure a model to use [extended thinking](https://docs.anthropic.com/en/docs/about-claude/models/extended-thinking-models) (if it supports it),
|
||||
by changing the mode in of your models configuration to `thinking`, for example:
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "claude-3-7-sonnet-latest",
|
||||
"display_name": "claude-3-7-sonnet-thinking",
|
||||
"max_tokens": 200000,
|
||||
"mode": {
|
||||
"type": "thinking",
|
||||
"budget_tokens": 4_096
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### GitHub Copilot Chat {#github-copilot-chat}
|
||||
|
||||
You can use GitHub Copilot chat with the Zed assistant by choosing it via the model dropdown in the assistant panel.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue