mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-15 16:42:11 +00:00
Added capabilities for latest open-source models
This commit is contained in:
parent
dfae93c84b
commit
f9746a14ab
@ -76,7 +76,9 @@ public static partial class ProviderExtensions
|
||||
//
|
||||
if (modelName.IndexOf("deepseek") is not -1)
|
||||
{
|
||||
if (modelName.IndexOf("deepseek-v4-flash-0731") is not -1)
|
||||
if ((modelName.IndexOf("deepseek-v4-flash") is not -1 ||
|
||||
modelName.IndexOf("deepseek-v4-pro") is not -1) &&
|
||||
modelName.IndexOf("-base") is -1)
|
||||
return
|
||||
[
|
||||
Capability.TEXT_INPUT, Capability.TEXT_OUTPUT,
|
||||
@ -109,6 +111,16 @@ public static partial class ProviderExtensions
|
||||
Capability.ALWAYS_REASONING,
|
||||
Capability.CHAT_COMPLETION_API,
|
||||
];
|
||||
|
||||
// Check for the open-weight Qwen 3.8 checkpoint:
|
||||
if(modelName.IndexOf("qwen3.8-2.4t-a95b") is not -1)
|
||||
return
|
||||
[
|
||||
Capability.TEXT_INPUT, Capability.TEXT_OUTPUT,
|
||||
|
||||
Capability.ALWAYS_REASONING, Capability.FUNCTION_CALLING,
|
||||
Capability.CHAT_COMPLETION_API,
|
||||
];
|
||||
|
||||
// Check for Qwen 3.5:
|
||||
if(modelName.IndexOf("qwen3.5") is not -1)
|
||||
@ -150,6 +162,16 @@ public static partial class ProviderExtensions
|
||||
//
|
||||
// Moonshot AI / Kimi models:
|
||||
//
|
||||
if (modelName.IndexOf("kimi-k3") is not -1)
|
||||
return
|
||||
[
|
||||
Capability.TEXT_INPUT, Capability.MULTIPLE_IMAGE_INPUT, Capability.VIDEO_INPUT,
|
||||
Capability.TEXT_OUTPUT,
|
||||
|
||||
Capability.ALWAYS_REASONING, Capability.FUNCTION_CALLING,
|
||||
Capability.CHAT_COMPLETION_API,
|
||||
];
|
||||
|
||||
if (modelName.IndexOf("kimi-k2.7-code") is not -1)
|
||||
return
|
||||
[
|
||||
@ -355,7 +377,7 @@ public static partial class ProviderExtensions
|
||||
//
|
||||
if (modelName.IndexOf("glm") is not -1)
|
||||
{
|
||||
if (modelName.IndexOf("glm-5.2-nvfp4") is not -1)
|
||||
if (modelName.IndexOf("glm-5.2") is not -1)
|
||||
return
|
||||
[
|
||||
Capability.TEXT_INPUT,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# v26.8.1, build 251 (2026-08-xx xx:xx UTC)
|
||||
- Added Hetzner's experimental inference API as an LLM provider. It runs open-source models in the EU and supports text and image chats through its OpenAI-compatible API.
|
||||
- Added support for the new open source models DeepSeek V4 Flash, GLM 5.2, Kimi K2.7 Code, and Qwen 3.6.
|
||||
- Added support for the new open source models DeepSeek V4 Flash and Pro, GLM 5.2, Kimi K2.7 Code and K3, as well as Qwen 3.6 and 3.8.
|
||||
- Added a prototype Visual Briefing Assistant that turns documents, data, images, audio, and video into self-contained interactive HTML briefings. When you want to test it, you have to enable this preview feature in your app settings.
|
||||
- Added organization-configurable defaults and visibility controls for the Visual Briefing Assistant.
|
||||
- Added a share button for assistants, configurations, and language plugins. It uses the native share dialog on Windows and macOS. For Linux, we added an export option, which stores the plugin archive at a location of your choice. When you work on a translation for a new language, you can now hand your current state to testers or to us with one click.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user