feat(server): bump models (#15013)

#### PR Dependency Tree


* **PR #15013** 👈

This tree was auto-generated by
[Charcoal](https://github.com/danerwilliams/charcoal)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **New Features**
* Expanded AI capabilities with the addition of Gemini 3.5 Flash model,
providing enhanced options for AI-powered features.

* **Updates**
* Updated Claude Sonnet to the latest version for improved performance.
  * Refreshed pro models configuration with optimized selections.

<!-- review_stack_entry_start -->

[![Review Change
Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/toeverything/AFFiNE/pull/15013?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)

<!-- review_stack_entry_end -->

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
DarkSky
2026-05-21 15:29:00 +08:00
committed by GitHub
parent dd1cd77ca0
commit 3098b3b14b
4 changed files with 10 additions and 14 deletions
@@ -706,8 +706,8 @@
"optionalModels": [
"gemini-2.5-flash",
"gemini-2.5-pro",
"gemini-3.1-pro-preview",
"claude-sonnet-4-5@20250929"
"gemini-3.5-flash",
"claude-sonnet-4-6"
],
"config": {
"tools": [
@@ -722,11 +722,7 @@
"codeArtifact",
"blobRead"
],
"proModels": [
"gemini-2.5-pro",
"gemini-3.1-pro-preview",
"claude-sonnet-4-5@20250929"
]
"proModels": ["gemini-2.5-pro", "gemini-3.5-flash", "claude-sonnet-4-6"]
},
"builtins": [
"date",
@@ -61,12 +61,12 @@ mod tests {
fn should_resolve_backend_scoped_alias() {
let response = llm_resolve_model_registry_variant(ModelRegistryResolveRequest {
backend_kind: Some("anthropic_vertex".to_string()),
model_id: "claude-sonnet-4.5".to_string(),
model_id: "claude-sonnet-4.6".to_string(),
})
.unwrap();
assert_eq!(response.matched_by.as_deref(), Some("canonical"));
assert_eq!(response.variant.unwrap().raw_model_id, "claude-sonnet-4-5@20250929");
assert_eq!(response.variant.unwrap().raw_model_id, "claude-sonnet-4-6");
}
#[test]