Added support for latest Claude and Qwen models.

This commit is contained in:
Peer Schütt 2026-04-17 08:58:46 +02:00
parent caec79b7e7
commit 4cf7d3d86d
3 changed files with 5 additions and 5 deletions

View File

@ -35,8 +35,8 @@ public static partial class ProviderExtensions
Capability.CHAT_COMPLETION_API,
];
// Check for Qwen 3.6 plus:
if(modelName.StartsWith("qwen3.6-plus"))
// Check for Qwen 3.6 family:
if(modelName.StartsWith("qwen3.6"))
return
[
Capability.TEXT_INPUT, Capability.VIDEO_INPUT,

View File

@ -113,8 +113,8 @@ public static partial class ProviderExtensions
Capability.CHAT_COMPLETION_API,
];
// Check for Qwen 3.6:
if(modelName.IndexOf("qwen3.6-plus") is not -1)
// Check for Qwen 3.6 family:
if(modelName.IndexOf("qwen3.6") is not -1)
return
[
Capability.TEXT_INPUT, Capability.VIDEO_INPUT,

View File

@ -1,5 +1,5 @@
# v26.4.1, build 235 (2026-04-xx xx:xx UTC)
- Added support for the latest AI models, e.g., Qwen 3.5 & 3.6 Plus, Mistral Large 3 & Small 4, OpenAI GPT 5.4, etc.
- Added support for the latest AI models, e.g., Qwen 3.5 & 3.6-family, Mistral Large 3 & Small 4, OpenAI GPT 5.4, Claude Opus 4.7 etc.
- Added assistant plugins, making it possible to extend AI Studio with custom assistants. Many thanks to Nils Kruthof `nilskruthoff` for this contribution.
- Added a slide planner assistant, which helps you turn longer texts or documents into clear, structured presentation slides. Many thanks to Sabrina `Sabrina-devops` for her wonderful work on this assistant.
- Added a reminder in chats and assistants that LLMs can make mistakes, helping you double-check important information more easily.