Support DeepSeek V4 Pro execution

This commit is contained in:
Georg Bauer
2026-07-26 12:02:06 +02:00
parent 3c75b8f6c1
commit 1de954b579
4 changed files with 40 additions and 25 deletions

View File

@@ -544,7 +544,7 @@ fn compatible_completion(
fn installed_endpoint_models(models_path: &std::path::Path) -> Vec<ModelChoice> {
model::installed_models(models_path)
.into_iter()
.filter(|model| *model == ModelChoice::DeepSeekV4Flash)
.filter(|model| *model != ModelChoice::Glm52)
.collect()
}