Give Zed AI users access to Claude 3.7 Sonnet (#25577)
This PR updates the client-side checks to give Zed AI users access to Claude 3.7 Sonnet. Requires https://github.com/zed-industries/zed/pull/25576 to be deployed. Release Notes: - Added support for Claude 3.7 Sonnet to Zed AI.
This commit is contained in:
parent
3d7ba7c1c0
commit
75dbe189bd
2 changed files with 5 additions and 2 deletions
|
@ -263,6 +263,10 @@ impl LanguageModelProvider for CloudLanguageModelProvider {
|
|||
anthropic::Model::Claude3_5Sonnet.id().to_string(),
|
||||
CloudModel::Anthropic(anthropic::Model::Claude3_5Sonnet),
|
||||
);
|
||||
models.insert(
|
||||
anthropic::Model::Claude3_7Sonnet.id().to_string(),
|
||||
CloudModel::Anthropic(anthropic::Model::Claude3_7Sonnet),
|
||||
);
|
||||
}
|
||||
|
||||
let llm_closed_beta_models = if cx.has_flag::<LlmClosedBeta>() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue